Difference between revisions of "Git add"

From wikieduonline
Jump to navigation Jump to search
Line 1: Line 1:
{{Draft}}
+
<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
+
  Steps: <code>[[git add]]</code> -> <code>[[git commit]]</code> -> <code>[[git push]]</code>
  
 
  git add  
 
  git add  

Revision as of 09:14, 22 November 2020

git-add, add file contents to the index.

Steps: git add -> git commit -> git push
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 .
(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

Related terms

See also

Advertising: