在windows下使用TortoiseGit提交代碼到github

來源:互聯網
上載者:User
文章目錄
  • 1.set up git
  • 2.create a repo
一、安裝git工具

在windows下使用git最好的軟體就是TortoiseGit,類似與TortoiseSVN小烏龜。

:https://code.google.com/p/tortoisegit/

安裝順序: recommended order: install TortoiseGit first

——先安裝TortoiseGit,再安裝msysgit

安裝完之後使用git bash.

git bash是Windows下的命令列工具。

基於msys GNU環境,有git分布式版本控制工具,也主要用於git。

 

二、關於git和github的一些概念

repository [ri'p?zit?ri]  知識庫,版本庫,程式碼程式庫

collaborate [k?'l?b?ret] 合作,協作,協同

git 是一個快速高效的、分布式的版本控制系統,完美適用於協作式軟體開發。

github 是與其他人協作做好的方式。

fork 分支

brunch 分支

 

三、向github中Managed 程式碼1.set up git

1.配置Username和Email

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

 

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

 

2.配置git和gitbash可以正常顯示中文

http://blog.csdn.net/son_of_god/article/details/7341928

2.create a repo

首先在github上建立一個repo,如 MyTools,然後在git bash中操作

mkdir MyTools

cd MyTools

git init

touch README

--edit README file

git add README

git commit –m 'the first commit for git'

git remote add origin https://github.com/FrankFan/MyTools.git

git push origin master

 

 

說明:

touch和cat的區別

cat 一般是用來查看文字檔內容
touch可以建立一個空檔案,可以修改檔案的建立時間

update 2013-05-17

1.如果要刪除一個檔案,使用

git remove READ

刪除之後再git add <file>則不會在索引中刪除這個檔案,必須通過使用-a選項的命令:

git commit -a -m 'now file READ is removed'

 

 2. git clone
把github上的原始碼庫拷貝到本地:

git clone https://github.com/FrankFan/DatabasePicExporter

 

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.