
git
sm_Bo
这个作者很懒,什么都没留下…
展开
-
git使用
1:项目文件夹放到git文件中 2:cd 到该项目文件夹 git init 创建仓库 .git 3: git add -A 把所有文件添加到仓库里 4: git commit -m (commit 时要说的话,以后看才明白) 5: 关联到远程库 git remote add origin(远程库的名字) http://git.oschina.net/Bo_/baozhangxitong.原创 2015-12-27 23:18:32 · 518 阅读 · 0 评论 -
git 进阶
一. gitconfig–globaluser.name“YourName” git config –global user.name “Your Name” git config –global user.email “email@example.com” 二. git init。 git add git commit -m “something原创 2016-07-25 17:16:59 · 427 阅读 · 0 评论