目標是看了這邊文章能夠滿足最基本的git使用需求。整個文章的遠端git庫以git.osc為例。
安裝好後,滑鼠右鍵點git bash here,會出來命令列介面。
首先到~目錄
root@host
mingw64 /d/
$ cd
root@host
mingw64 ~
$
必須有,遠端git庫通過這個確定是誰提交的**。
git config --global user.name "username"
git config --global user.email "email"
專案鏈結分為 https 或者 ssh
ssh-keygen -t rsa
,按三個回車,密碼為空。
看看生成結果。
root@host mingw64 ~
$ cd .ssh/
root@host mingw64 ~/.ssh
$ ls
id_rsa id_rsa.pub known_hosts
root@host mingw64 ~/.ssh
$ cat id_rsa.pub
ssh-rsa ***.....*** levonhe@163
.com
路徑是 個人資料 -> ssh公鑰
root@host
mingw64 /d
$ mkdir projecta
root@host
mingw64 /d
$ cd projecta/
root@host
mingw64 /d/projecta
$ git init
initialized empty git repository in
d:/projecta/.git/
root@host mingw64 /d/projecta (master)
$ git remote add oschina [email protected]
.net:levonhe/jisenmall.git
root@host mingw64 /d/projecta (master)
$ git remote -v
oschina [email protected]
.net:root/projecta.git (fetch)
oschina [email protected]
.net:root/projecta.git (push)
root@host mingw64 /d/projecta (master)
$ git pull oschina
remote: counting objects: 8268, done.
remote: compressing objects: 100% (5808/5808), done.
remote: total 8268 (delta 2480), reused 7970 (delta 2284)
receiving objects: 100% (8268/8268), 123.92 mib | 586.00 kib/s, done.
resolving deltas: 100% (2480/2480), done.
from git.oschina.net:levonhe/projecta
* [new branch] branch1 -> oschina/branch1
* [new branch] master -> oschina/master
* [new tag] v0.1
.1 -> v0.1
.1you asked to pull from
the remote 'oschina', but did not specify
a branch. because this is not
the default configured remote
for your current branch, you must specify a branch on
thecommand
line.
Git 簡單使用方法
git 常用命令 git init here 建立本地倉庫 repository 將會在資料夾下建立乙個 git 資料夾,git 資料夾裡儲存了所有的版本資訊 標記等內容 git clone 如果你需要與他人合作乙個專案,或者想要複製乙個專案,看看 你就可以轉殖那個專案。執行命令 git remot...
Git 使用方法
git 常用命令 git init here 建立本地倉庫 repository 將會在資料夾下建立乙個 git 資料夾,git 資料夾裡儲存了所有的版本資訊 標記等內容 git remote add origin git github.com winter1991 helloworld.git 把...
Git 使用方法
git 常用命令 git init here 建立本地倉庫 repository 將會在資料夾下建立乙個 git 資料夾,git 資料夾裡儲存了所有的版本資訊 標記等內容 git remote add origin git github.com winter1991 helloworld.git 把...