# クローン
git clone https://github.com/tatsujihatanaka/lookaround.jp.git
# フォルダへ移動
cd lookaround.jp/
# 状態確認と以前の練習の後始末
git status
git branch -a
git branch -d -r origin/test
git push --delete origin test
# ブランチの作成・確認・削除
git branch test
git branch -a
git branch -d test
git branch -a
# ブランチの削除切替と切替
git checkout -b test
git branch -a
git checkout main
git branch -a
git checkout test
# 未追跡(untracked)ステージング前のファイル
# ファイルの追加・変更・戻し
touch test.txt
mkdir test
touch test/test.txt
sed -i -e 's/パノラマ</パノラマ test</g' views/index.php
git status
git clean -dn
git clean -df .
git status
git clean -dn
git checkout .
# 追跡(tracked)ステージングされたファイル
# ファイルの追加・変更・戻し
touch test.txt
mkdir test
touch test/test.txt
sed -i -e 's/パノラマ</パノラマ test</g' views/index.php
git status
git add .
git status
git rm -r --cached .
git status
git clean -dn
git clean -df .
git status
git reset --hard
More than 1 year has passed since last update.
Register as a new user and use Qiita more conveniently
- You get articles that match your needs
- You can efficiently read back useful information
- You can use dark theme