git首次提交代码到服务器

先配置信息

1. git config --global user.name "linlianhuao"

2. git config --global user.email "[email protected]"

创建仓库并提交代码

1. git init 

2. git remote add origin git@gitlab.***.com:linlianhuao/**.git

3. git add -A

4. git commit -m 建立项目

5. git push -u origin master

拉取远程代码

1. git clone git@gitlab.***.com:linlianhuao/**.git

2. cd **

3. git add -A

4. git commit -m 提交信息

5. git push -u origin master
---------------------
作者:指尖之间
来源:CSDN
原文:https://blog.csdn.net/ekey_code/article/details/55116376
版权声明:本文为博主原创文章,转载请附上博文链接!

猜你喜欢

转载自www.cnblogs.com/kaiziwu/p/10328918.html