码迷,mamicode.com
首页 > 其他好文 > 详细

git常用命令 (阿里云code)

时间:2016-12-22 15:01:16      阅读:293      评论:0      收藏:0      [点我收藏+]

标签:ini   tle   git   新版本   阿里   版本库   令行   指令   常用命令   

命令行指令

Git 全局设置
git config --global user.name "马会东"
git config --global user.email "master_ma@sinobasedm.com"
创建新版本库
git clone git@code.aliyun.com:PTU/ProjectWechat.git
cd ProjectWechat
touch README.md
git add README.md
git commit -m "add README"
git push -u origin master
已存在的文件夹或 Git 仓库
cd existing_folder
git init
git remote add origin git@code.aliyun.com:PTU/ProjectWechat.git
git add .
git commit -m "init project"
git push -u origin master

git常用命令 (阿里云code)

标签:ini   tle   git   新版本   阿里   版本库   令行   指令   常用命令   

原文地址:http://www.cnblogs.com/duanweishi/p/6210851.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!