
Git
czhzasui
nullpter
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Git学习记录
初始化新仓库,这是使用git环境前提!#git init本地提交简单二步:#git add test.c//保存到暂存区#git commit -m "first commit"添加远程仓库#git remote add origin http://cigit.cn/chenzhihui/Liquid.gitorigin 相当于仓库Liquid的别名,这个别名保存在当前文件夹中,其他地方不能使用。...原创 2018-03-19 17:20:10 · 184 阅读 · 0 评论 -
git常用命令
创建分支 git branch mybranch 切换分支 git checkout mybranch 创建+切换分支 git checkout -b mybranch 删除分支 git branch -d mybranch原创 2018-08-07 15:00:47 · 163 阅读 · 0 评论