ablog

不器用で落着きのない技術者のメモ

git

リモートリポジトリからブランチを指定して git clone する

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

事象 git rm でファイルを削除しようとすると、"fatal: pathspec 'ファイルパス' did not match any files" と怒られる。 % git rm ./.DS_Store fatal: pathspec './.DS_Store' did not match any files 原因 Gitに登録していないファイルのため。普通にファ…

.gitignoreで .DS_Store を削除する

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" $ …

Github から Linux PC に clone したメモ

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 に バイナリ置き場を作った

github に binary リポジトリを作成する。 Sign in to GitHub · GitHub で以下の通り入力して、[Create Repository] を押す。 Project Name: binary Description: location for binary files ローカルにリポジトリを作って、commitして、github に push する…

RHEL5.3 に git をインストールしてみた

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 をインストールする $ …

github にほりこんでるファイルの名前を修正した

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 でワーキングディレクトリでファイルを変更したけど元に戻したい場合

git

どうするんだろうかと思っていたら、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>…

日常的な git

git

変更されたファイルを 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>…

ローカルに git のリポジトリを作ってみた

git

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 にリポジトリを作成したのと別のマシンからファイルを作成したり削除したりする

git

github にリポジトリを作成したのと別のマシンからファイルを作成したり削除したりしようとしたけど、ローカルリポジトリは変更できるが、github に同期できないので、一旦ローカルリポジトリを削除してやり直してみた。 Cygwin を起動する。 ローカルリポジ…

github のリポジトリにディレクトリを作成して commit する

git

github を使ってみた - ablog で github にリポジトリを作成して、 Windows でも github を使ってみた - ablog で Windows から git を使えるようにしたので、 今回、Windows から github にファイルを commit してみた。 [スタート]-[すべてのプログラム]-[…

Windows でも github を使ってみた

git

github を使ってみた - ablog Mac に続き、Windows でも git を使えるようにした。 Git - Downloads から http://www.cygwin.com/setup.exe をダウンロードする。 パッケージをダウンロードする。 setup.exe を実行する。 Choose A Download Source: Downloa…

github を使ってみた

git

ちょっとしたスクリプトや .zshrc などをインターネット上において、いつでもどこでもダウンロードしたり更新したりできるようにしたいと思い、github を使ってみた。