2020年2月25日

git 的使用 v2

git 摘要

基本上, 至少需要 4 個指令,才能更新 github 的專案

git clone 抓 git 專案
git add [新增的檔名」
git commit -m "此次更新註解"
git push

步驟

0. 前置作業,設定名字
git config --global user.name "Bowebe Wang"

1. 先建立一個子目錄,並 cd 切進子目錄.例如
mkdir ~/git
cd ~/git

2. git clone 從你的 git 來源匯入專案 (可能會要求密碼)
git clone ssh://xx-xxx@git.code.sf.net/p/gretl/git gretl-git

3. 更新檔案 (略...),例如 po 檔

4. git 新增
git add ./po/zh_TW.po

5. git commit 確認
git commit zh_TW.po -m "括號內加註解"

6. git 推上雲端 github
git push

7. online 繁轉簡網站
https://name.longwin.com.tw/twcn.php

沒有留言: