Git使用

基本命令

git init  //初始化整个被git监管的目录
git add .  //将所有文件提交到暂存区域
git commit -m ''des'' //确认提交的信息
git remote add projectName url //给远程地址取个名字
git branch test  //创建test分支
git branch -d test //删除分支
git checkout test// 切换分支
git merge test //合并分支
 git push origin test:test //推送本地分支到服务器分支
git push origin :test  //删除远程分支

你可能感兴趣的:(Git使用)