阿里云codeup,git命令

代码克隆
git clone https://codeup.teambition.com/your-company/xxx.git # 换成你复制的代码库地址

SSH 协议克隆

git clone [email protected]:your-company/xxx.git # 换成你复制的代码库地址

提交代码

创建新提交

git add .

将记录提交到代码仓库里

git commit -m "add hello.java" # 双引号里写提交说明

将本地代码仓库的改动推送至远端的代码仓库。

git push

你可能感兴趣的:(git,阿里云)