Difference between revisions of "Git add"

From wikieduonline
Jump to navigation Jump to search
Line 31: Line 31:
 
* [[Make Local Changes and Update remote Repositories]]
 
* [[Make Local Changes and Update remote Repositories]]
 
* <code>[[git status]]</code>
 
* <code>[[git status]]</code>
 +
* <code>[[git rm]]</code>
  
 
== See also ==
 
== See also ==

Revision as of 15:30, 8 September 2021

git-add, add file contents to the index.


Steps: git add -> git commit -> git push

Example

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


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/


ppgit add -A]]


Related terms

See also

Advertising: