怎样使用Git

By admin, 27 三月, 2015

初始化账号:

 

git config --global user.name "Your Name"

git config --global user.email "your_email@whatever.com"

git config --global push.default current

复制远程的代码仓库到本地:

 

git clone https://<username>@git.oschina.net/skjy/learngit.git 

cd learngit

从远程仓库获取最新的更新:

git pull

创建一个测试文件test.txt

添加这个文件到git:

git add test.txt

提交修改到本地仓库:

git commit -a -m "add test"

把本地仓库的修改推送到远程仓库:

git push

缓存密码的方法

 

 

标签

评论

Restricted HTML

  • 允许的HTML标签:<a href hreflang> <em> <strong> <cite> <blockquote cite> <code> <ul type> <ol start type> <li> <dl> <dt> <dd> <h2 id> <h3 id> <h4 id> <h5 id> <h6 id> <img src>
  • 自动断行和分段。
  • 网页和电子邮件地址自动转换为链接。
验证码
This question is for testing whether or not you are a human visitor and to prevent automated spam submissions.
请输入"Drupal10"