首页 > 其他 > 详细

git push文件到远程github或者gitlab

时间:2018-05-28 22:21:21      阅读:157      评论:0      收藏:0      [点我收藏+]
 1 Git global setup
 2 
 3 git config --global user.name "luozeng"
 4 git config --global user.email "354020912@qq.com"
 5 
 6 Create a new repository
 7 
 8 git clone https://gitlab.com/luozeng/blog.git
 9 cd blog
10 touch README.md
11 git add README.md
12 git commit -m "add README"
13 git push -u origin master
14 
15 Existing folder
16 
17 cd existing_folder
18 git init
19 git remote add origin https://gitlab.com/luozeng/blog.git
20 git add .
21 git commit -m "Initial commit"
22 git push -u origin master
23 
24 Existing Git repository
25 
26 cd existing_repo
27 git remote rename origin old-origin
28 git remote add origin https://gitlab.com/luozeng/blog.git
29 git push -u origin --all
30 git push -u origin --tags

 

git push文件到远程github或者gitlab

原文:https://www.cnblogs.com/luozeng/p/9102453.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!