Git操作方法

Git UiPathの初期 #

# 1. カレントディレクトリをGitリポジトリとして初期化
git init

# 2. .gitignoreファイルを作成
cat << EOF > .gitignore
# .localフォルダ内のすべてを無視
.local/
EOF

# 3. ファイルをステージングエリアに追加(全てのファイルを追加する場合)
git add .

# すべてのファイルでCRLFを使用
git config --global core.autocrlf true

# 4. 初期コミットを作成
git commit -m "初期コミット"

# 5. リモートリポジトリを追加
git remote add origin https://github.com/AutoFor/TemplateSimpleProcess

# 6. リモート設定を確認
git remote -v

# 7. ローカルの変更をリモートにプッシュ
git push -u origin main

# 注意: 'main'の部分は、あなたのデフォルトブランチ名に合わせて変更してください(例:master)

Git の改行設定を確認・変更する #

git config --global core.autocrlf true

基本的な add、commit、push #

# 1. 変更をステージングエリアに追加
git add <ファイル名>  # 特定のファイルを追加
git add .             # すべての変更されたファイルを追加

# 3. 変更をコミット
git commit -m "コミットメッセージをここに書く"

# 5. リモートリポジトリに変更をプッシュ
git push origin main

ファイルを削除したことをコミットする #

# 方法2: git rmコマンドを使用(推奨)
git rm path/to/file           # ファイルを削除し、同時にステージングに追加

# フォルダ自体を削除する方法
git rm -r <フォルダ名>

ファイルを移動 #

# 方法1: git mv コマンドを使用(推奨)
git mv old_path/file.txt new_path/file.txt

# 方法4: ディレクトリ全体を移動
git mv old_directory new_directory

ファイル名を変更 #

# 方法3: ファイル名を変更
git mv old_name.txt new_name.txt

Git の改行設定を確認・変更する #

git config --global core.autocrlf true

現在の変更状況を全てリセットする #

git reset --hard

ログを日付付きで出す方法 #

全体に行う場合
git log --pretty=format:"%h %ad %s" --date=format:"%Y-%m-%d %H:%M"
特定のファイルに行う場合
git log --pretty=format:"%h %ad %s" --date=format:"%Y-%m-%d %H:%M" -- example.txt

Powered by BetterDocs