git command
関連タイピング
-
プログラミング必須英単語リスト:ベーシック(g~m)
プレイ回数240 長文1238打 -
HTML&CSSを忘れないために
プレイ回数2.9万 英語長文759打 -
コマンドラインやプログラミング言語のタイピング練習用
プレイ回数2736 英語長文90秒 -
python 基本
プレイ回数959 英字120打 -
プログラミングで良く使う英単語、構文のタイピングです!
プレイ回数4002 短文英字429打 -
全記号数字タイピング練習(108文字×100問,2分間ランダム)
プレイ回数9750 英語長文120秒 -
競技プログラミングに特化したc++コードのタイピングです。
プレイ回数3454 英語長文300秒 -
※long long → ll, vector → vc
プレイ回数412 英語90秒
問題文
ふりがな非表示
ふりがな表示
(git config --global user.name ”user”)
git config --global user.name "user"
(git config --global user.email)
git config --global user.email
(git init)
git init
(git add)
git add
(git commit -m ”initial commit”)
git commit -m "Initial commit"
(git remote add origin)
git remote add origin
(git push -u origin master)
git push -u origin master
(git clone https://github.com/hog.git)
git clone https://github.com/hog.git
(git pull)
git pull
(git fetch)
git fetch
(git merge origin/master)
git merge origin/master
(git status)
git status
(git log)
git log
(git show)
git show
(git push -u origin)
git push -u origin
(git reset head)
git reset HEAD
(git reset --hard head^)
git reset --hard HEAD^
(git revert)
git revert
(git commit --amend ”new commit msg”)
git commit --amend "new commit msg"
(git reset --hard)
git reset --hard
など
(git push -f)
git push -f
(git branch feature/issue_)
git branch feature/issue_
(git checkout feature/issue)
git checkout feature/issue
(git diff)
git diff
(git merge --no-ff)
git merge --no-ff
(git stash save)
git stash save