AutoHotkey GitHubで管理

以前から更新しているファイルをGitHubで管理するためのメモ。

AutoHotkey キー設定スクリプト

GitHubでレポジトリを作成する。
https://github.com/okamurax/ahk.git
のようなURLが発行される。

以下はローカルのフォルダの中で
git init
git remote add r https://github.com/okamurax/ahk.git
※ここではrという名前でリモートレポジトリを登録。

git add .
※ファイル名を指定する場合git add <ファイル名>
※ドットはカレントディレクトリ内のすべてという意味

git commit -m “2024/01/11” .

git push -u r master
※-uはブランチを追跡する
※最初のcommitを行うとmasterという名前のbranchが作成される。
※強制上書きはgit push –force

URL
https://github.com/okamurax/ahk/blob/master/startup.ahk