Difference between revisions of "Git add"

From wikieduonline
Jump to navigation Jump to search
 
(9 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 +
{{lowercase}}
 
<code>git-add</code>, add file contents to the index.
 
<code>git-add</code>, add file contents to the index.
 
* https://git-scm.com/docs/git-add
 
* https://git-scm.com/docs/git-add
 +
* <code>[[git add --help]]</code>
  
  
Line 15: Line 17:
 
  git add README.md
 
  git add README.md
 
  [[git commit]] -m "add README"
 
  [[git commit]] -m "add README"
  [[git push]] -u origin master
+
  [[git push -u origin master]]
 +
 
 +
Selected files:
 +
[[git]] add your-first-file your-second-file
  
 
  git add  
 
  git add  
Line 21: Line 26:
 
  [[git init]]
 
  [[git init]]
 
  Initialized empty Git repository in /private/path/to_dir/.git/
 
  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 -A]]
 +
 +
[[git add --all]]
  
 
== Related terms ==
 
== Related terms ==
Line 28: Line 38:
 
* <code>[[git status]]</code>
 
* <code>[[git status]]</code>
 
* <code>[[git rm]]</code>
 
* <code>[[git rm]]</code>
 +
* <code>[[git commit -a]]</code>
 +
* <code>[[nothing added to commit but untracked files present (use "git add" to track)]]</code>
 +
 +
== Activities ==
 +
* [[How to commit to remote branch]]
  
 
== See also ==
 
== See also ==
 
* {{git add}}
 
* {{git add}}
* {{git}}
 
  
 
[[Category:Git]]
 
[[Category:Git]]

Latest revision as of 08:38, 20 June 2023

git-add, add file contents to the index.


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

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]

Activities[edit]

See also[edit]

Advertising: