码迷,mamicode.com
首页 > 其他好文 > 详细

GIT使用方法

时间:2017-12-14 21:07:22      阅读:218      评论:0      收藏:0      [点我收藏+]

标签:配置   detail   ora   down   最新   图标   post   href   bit   

(1)进入官网下载并安装Git

   https://git-scm.com/

2 安装TortoiseGit

首先,要安装Windows Installer 4.5

然后,安装TortoiseGit-1.8.8.0-32bit.msi(当前最新版本)

最后,安装TortoiseGit中文语言包

TortoiseGit-LanguagePack-1.8.7.0-32bit-zh_CN.msi

(3)输入初始化命令

git init

(4)配置用户名及电子邮件

git config --global user.name "your_name"

 

git config --global user.email your_email

5添加到本地库

鼠标右键点击如上图图标的文件,选择“增加”

这时,文件图标变为

表示添加到本地库成功。

6)提交并备注信息

git commit -m "添加 README.md 文件"

提交到 GitHub(第一次可能会弹出GItHub登陆窗口)

git remote add origin your_SSH

git push -u origin master

成功一次以后使用以下命令即可再次提交

git add your_document

git push

 

 

结束。

GIT使用方法

标签:配置   detail   ora   down   最新   图标   post   href   bit   

原文地址:http://www.cnblogs.com/wwwyytcom/p/8039455.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!