git Bash 安裝 配置與基本操作

2021-07-04 08:08:54 字數 494 閱讀 3362

安裝完成後,開啟git bash:

1. 配置 :盡量保持與git@osc的註冊資訊一致

$ git config --global user.email "your email"

$ git config --global user.name "your name"

2. 將git.oschina.net上名為test的專案clone到本地d:/mygit資料夾下:

$ git clone 

上述http位址應從git.oschina.net上的專案一致。

3. 更新test專案並上傳至master:

$ cd /yourtestdirectory 

$ git add * 

$ git commit -am "info

$ git push origin master

4. 更新本地test

$ cd /yourtestdirectory

$ git pull

實操步驟 sersync安裝配置

在所有接受檔案端yum install y rsync安裝 rsync root 01 backup rsync artuz r delete 傳輸用使用者名稱 10.10.1.119 共享目錄名 password file etc rsync.pas error auth failed on mo...

Memcached的安裝配置與基本使用

四 通過python操作 一 什麼是memcached 二 安裝與啟動memcached windows 安裝 memcached.exe d install 啟動 memcached.exe d start ubuntu 安裝依賴 sudo apt get install libevent dev...

gitbash安裝與使用

2.點選exe檔案安裝,安裝完成後開啟cmd,建立倉庫 3.選擇乙個盤建立乙個資料夾隨意命名 如 e git 使用git init命令來初始化乙個git倉庫,該命令執行完後會在當前目錄生成乙個.git目錄。4.在e git目錄下建立乙個要管理的目錄 如 e git cloudmc 使用git add...