Difference between revisions of "Git push"

From wikieduonline
Jump to navigation Jump to search
Line 9: Line 9:
 
  Writing objects: 100% (3/3), 245 bytes | 245.00 KiB/s, done.
 
  Writing objects: 100% (3/3), 245 bytes | 245.00 KiB/s, done.
 
  Total 3 (delta 0), reused 0 (delta 0)
 
  Total 3 (delta 0), reused 0 (delta 0)
  To ssh://gitlab.yourdoain.com:2224/project/project_test.git
+
  To ssh://gitlab.yourdomain.com:2224/project/project_test.git
 
  * [new branch]      master -> master
 
  * [new branch]      master -> master
 +
 +
 +
git push -u origin master
 +
 
 +
Enumerating objects: 3, done.
 +
Counting objects: 100% (3/3), done.
 +
Writing objects: 100% (3/3), 212 bytes | 212.00 KiB/s, done.
 +
Total 3 (delta 0), reused 0 (delta 0), pack-reused 0
 +
To ssh://gitlab.yourdomain.com:2224/project/project_test.git
 +
* [new branch]      master -> master
 +
Branch 'master' set up to track remote branch 'master' from 'origin'.
 +
 +
 +
  
 
  git push -u origin master or git push --set-upstream origin master (Used by argument-less <code>[[git pull]]</code>)
 
  git push -u origin master or git push --set-upstream origin master (Used by argument-less <code>[[git pull]]</code>)

Revision as of 12:57, 14 March 2021

git push update remote refs along with associated objects

https://git-scm.com/docs/git-push
git push -u origin master
git push origin master
Enumerating objects: 3, done.
Counting objects: 100% (3/3), done.
Writing objects: 100% (3/3), 245 bytes | 245.00 KiB/s, done.
Total 3 (delta 0), reused 0 (delta 0)
To ssh://gitlab.yourdomain.com:2224/project/project_test.git
* [new branch]      master -> master


git push -u origin master
 
Enumerating objects: 3, done.
Counting objects: 100% (3/3), done.
Writing objects: 100% (3/3), 212 bytes | 212.00 KiB/s, done.
Total 3 (delta 0), reused 0 (delta 0), pack-reused 0
To ssh://gitlab.yourdomain.com:2224/project/project_test.git
* [new branch]      master -> master
Branch 'master' set up to track remote branch 'master' from 'origin'.



git push -u origin master or git push --set-upstream origin master (Used by argument-less git pull)
git push -u origin master
ssh_exchange_identification: read: Operation timed out
fatal: Could not read from remote repository. 

Please make sure you have the correct access rights
and the repository exists.


touch README.md
git add README.md
git commit -m "add README"
git push -u origin master

Related terms

See also

Advertising: