Difference between revisions of "Git add"
Jump to navigation
Jump to search
Line 39: | Line 39: | ||
* <code>[[git rm]]</code> | * <code>[[git rm]]</code> | ||
* <code>[[git commit -a]]</code> | * <code>[[git commit -a]]</code> | ||
+ | * <code>[[nothing added to commit but untracked files present (use "git add" to track)]]</code> | ||
== Activities == | == Activities == |
Latest revision as of 08:38, 20 June 2023
git-add
, add file contents to the index.
Steps: git add
-> git commit
-> git push
Contents
Example[edit]
git add . (not output)
git add . -v add 'your_new_file'
touch README.md git add README.md git commit -m "add README" git push -u origin master
Selected files:
git add your-first-file your-second-file
git add fatal: not a git repository (or any of the parent directories): .git git init Initialized empty Git repository in /private/path/to_dir/.git/
git add . fatal: this operation must be run in a work tree
git add -A
git add --all
Related terms[edit]
- Make Local Changes and Update remote Repositories
git status
git rm
git commit -a
nothing added to commit but untracked files present (use "git add" to track)
Activities[edit]
See also[edit]
Advertising: