git
$ git clone -b 3.x-Driver-Compatible https://github.com/aws/aws-sigv4-auth-cassandra-java-driver-plugin.git 参考 リモートから特定のブランチを指定してcloneする方法 git clone -b ブランチ名 https://リポジトリのアドレス リモートから特定のブラ…
事象 git rm でファイルを削除しようとすると、"fatal: pathspec 'ファイルパス' did not match any files" と怒られる。 % git rm ./.DS_Store fatal: pathspec './.DS_Store' did not match any files 原因 Gitに登録していないファイルのため。普通にファ…
gti で .DS_Store を無視するよう設定する $ vi ~/.gitignore_global .DS_Store $ git config --global core.excludesfile ~/.gitignore_global GitHub の .DS_Store を削除する $ git rm -r --cached . $ git add . $ git commit -m "create .gitignore" $ …
git をインストールする # yum install git リポジトリからチェックアウトする $ mkdir -p /home/yazekats/Documents/github $ cd /home/yazekats/Documents/github $ git init $ git clone git://github.com/yoheia/yoheia.git
github に binary リポジトリを作成する。 Sign in to GitHub · GitHub で以下の通り入力して、[Create Repository] を押す。 Project Name: binary Description: location for binary files ローカルにリポジトリを作って、commitして、github に push する…
expat をインストールする $ cd /tmp $ wget http://surfnet.dl.sourceforge.net/sourceforge/expat/expat-2.0.1.tar.gz $ tar xzvf expat-2.0.1.tar.gz $ cd expat-2.0.1 $ ./configure $ make $ make check $ sudo make install git をインストールする $ …
cd /cygdrive/c/home/yoheia/src/github/meadow3/site-lisp git mv master.el.txt master.el git commit -m 'mv master.el.txt master.el' git push git@github.com:yoheia/yoheia.git master
どうするんだろうかと思っていたら、git status 打ったときに $ git status # On branch master # Changed but not updated: # (use "git add <file>..." to update what will be committed) # (use "git checkout -- <file>..." to discard changes in working director</file></file>…
変更されたファイルを commit する 変更されたファイルを調べる。 $ git status # On branch master # Your branch is ahead of 'origin/master' by 8 commits. # # Changed but not updated: # (use "git add <file>..." to update what will be committed) # (us</file>…
github にはあげれないもののあるので。 $ cd /cygdrive/c/git $ mkdir hoge $ cd hoge $ git init Initialized empty Git repository in /cygdrive/c/git/hoge/.git/ $ ls docs src $ git add docs/* $ git add src/* $ git commit -m 'init' [master (root…
github にリポジトリを作成したのと別のマシンからファイルを作成したり削除したりしようとしたけど、ローカルリポジトリは変更できるが、github に同期できないので、一旦ローカルリポジトリを削除してやり直してみた。 Cygwin を起動する。 ローカルリポジ…
github を使ってみた - ablog で github にリポジトリを作成して、 Windows でも github を使ってみた - ablog で Windows から git を使えるようにしたので、 今回、Windows から github にファイルを commit してみた。 [スタート]-[すべてのプログラム]-[…
github を使ってみた - ablog Mac に続き、Windows でも git を使えるようにした。 Git - Downloads から http://www.cygwin.com/setup.exe をダウンロードする。 パッケージをダウンロードする。 setup.exe を実行する。 Choose A Download Source: Downloa…
ちょっとしたスクリプトや .zshrc などをインターネット上において、いつでもどこでもダウンロードしたり更新したりできるようにしたいと思い、github を使ってみた。