All public logs
Jump to navigation
Jump to search
Combined display of all available logs of 清冽之泉. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 19:34, 22 July 2026 Mwroot talk contribs created page 极简 git 步骤 (Created page with "== 本地 == # cd sth # git init # git status # 写 .gitignore # git add . # git status # git diff --staged ;; commit 前先检查一下 # git commit -m "本次干了什么,下一步干什么" == 远程 == # git config --global user.name "你的名字" # git config --global user.email "你的邮箱" # git config --global --list # git remote add origin somewhere.git ;; origin 只是个昵称 # git remote -v # git branch -M main # git push -u origin main ;; u 表示 mai...")