Difference between revisions of "Git add"

From wikieduonline
Jump to navigation Jump to search
Line 5: Line 5:
 
Steps: <code>[[git add]]</code> -> <code>[[git commit]]</code> -> <code>[[git push]]</code>
 
Steps: <code>[[git add]]</code> -> <code>[[git commit]]</code> -> <code>[[git push]]</code>
  
git add
+
== Example ==
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 .
 
  git add .
 
  (not output)
 
  (not output)
Line 21: Line 17:
 
  [[git commit]] -m "add README"
 
  [[git commit]] -m "add README"
 
  [[git push]] -u origin master
 
  [[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/
 +
 +
  
 
== Related terms ==
 
== Related terms ==

Revision as of 07:47, 22 August 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/


Related terms

See also

Advertising: