のねのBlog

パソコンの問題や、ソフトウェアの開発で起きた問題など書いていきます。よろしくお願いします^^。

Git

The server's host key is not cached in the registry.

git -c diff.mnemonicprefix=false -c core.quotepath=false push -v --tags --set-upstream origin develop:develop master:master Pushing to git clone git@bitbucket.org:dev/method.git The server's host key is not cached in the registry. You have…

SourceTreeでPushしようとしたとき、”エラー終了しました。エラーの内容は上記をご覧ください。"

Git

git -c diff.mnemonicprefix=false -c core.quotepath=false push -v --tags --set-upstream origin develop:develop master:master Branch develop set up to track remote branch develop from origin. Branch master set up to track remote branch maste…

It seems that there is already a rebase-merge directory

Git

$ git rebase -i e003c1f It seems that there is already a rebase-merge directory, and I wonder if you are in the middle of another rebase. If that is the case, please try git rebase (--continue | --abort | --skip) If that is not the case, p…

コメントを修正するためRebaseしようとしたところ、.git/index.lock': File exists.

コメントを修正するためRebaseしようとしたところ、 git -c diff.mnemonicprefix= false -c core.quotepath= false -c "sequence.editor='C:\Program Files (x86)\Atlassian\SourceTree\stree_gri'" -c "core.editor ='C:\Program Files (x86)\Atlassian\Sou…

Source Tree cannot be removed.

Git

SourceTreeをインストールしようとしたところ、以下のエラーメッセージが出た。 以前入れたSourceTreeが、うまくアンインストールできていなかったようだ。"The older version of SourceTree cannot be removed.Contact your technical support group"

error: manifest missing or unreadable -- please run init

gitのinitがうまくいってないようです。 Syncing work tree: 7% (34/481) error: in `sync -j1`: [Errno 2] No such file or directory: u'/home/LP500_debug/android/device/google/accessory/arduino/.git/HEAD' error: manifest missing or unreadable --…

bitbucketのgitflow作成時、エラー:製品ブランチを作成できません

Git

Bitbucketでgit-flowを作成しようとしたとき、エラーになった。 あなたが選択した製品ブランチ'master'はもう存在しません。 製品ブランチがいつ開始されたかは、履歴の中でも非常に重要なため、 自動で作成できません。 これを解決するには、あなたのシステ…

SourceTreeで保留に表示されない

Windows7のSourceTreeでの話です。 SourceTreeでファイルが保留に表示されないときがありました。そこで、Windowsのエクスプローラで管理しているフォルダのトップを開きました。 管理フォルダのトップで、無視ファイルリスト(.gitignore)を一度削除しまし…

git 無視リストに追加した

# .config .repo/ .userconfig .var.profile *.swp *.pyc *.fix_b2g_stack.cache Adreno* Makefile abi/ backup-*/ bionic/ bootable/ build/ dalvik/ development/ device/ download-galaxy-nexus/ download-nexus-s/ external/ frameworks/ gaia/ gecko/ g…

repoコマンドのメールアドレス

$ cat ~/.gitconfig [user] email = user01@example.com name = FirstName LastName [color] ui = auto

Cannot obtain needed object

Git

Try these commands:git fsck git gc

repo syncでfatal: Not a git repository:

$ repo sync -j6 -f fatal: Not a git repository: '/cygdrive/d/android/master/.repo/projects/abi/cpp.git' fatal: Not a git repository: '/cygdrive/d/android/master/.repo/projects/bionic.git' 一度フォルダを消す。 $ rm -rf /cygdrive/d/android/m…

ERROR: Your msys-1.0.dll is out-of-date!

Git

rm: cannot unlink `/etc/msys-1.0.dll.md5': Permission denied ERROR: Your msys-1.0.dll is out-of-date! Git bash error on Windows Server 2008 R2 64-bit

git commitで文字化け

Git

$ git var GIT_COMMITTER_IDENT Masanori Fujii 1326790457 +0900 $ git var GIT_AUTHOR_IDENT Masanori Fujii 1326790480 +0900$ git add . $ git commit -m "Jupitorホームページ" Warning: commit message does not conform to UTF-8. You may want to am…

TortoiseGitのSetting>GeneralのMSysGitの設定

Git

Git.exe Path: デフォルト[C:\Program Files (x86)\Git\bin] Extern DLL Path: デフォルト[空白]git version 1.7.8.msysgit.0 (Git-1.7.8-preview20111206.exe) TortoiseGit 1.7.6.0 ほかのブログとデフォルト値が違う。 バージョンが上がって変わったのか…

TortoiseGit

Git

tortoisegitだけでいいような気がしてきた。 tortoisegit●msysgitは必要。 Git-1.7.8-preview20111206.exeをインストールした。

git extensions

Git

git extensions Visual StudioでGitを使用できるようになるまで

msysgitで日本語

Git

●inputrcの設定 C:\Program Files (x86)\Git\etc\inputrc set meta-flag on set input-meta on set output-meta on set convert-meta off set kanji-code utf-8 参照:WindowsでのGit環境構築とその注意点●profileの設定 C:\Program Files (x86)\Git\etc\pro…

gitの設定

Git

●git init git init .gitのフォルダが作成される。●gitの設定 git config --global user.name=hoge git config --global user.email=hoge@fuga.com git config --global color.ui auto 設定の確認 git config --global -l 全設定の確認 git var -l 参照:Git…

repo initでエラー

repo initを行ったところ以下のようなエラーが発生した。 $ repo init -u git://android.git.kernel.org/platform/manifest.git -b froyo Traceback (most recent call last): File "/home/android/.repo/repo/main.py", line 235, in _Main(sys.argv[1:]) F…

gitの本

repoがよくわからなかったので、gitの本を買った。 ぼくは、こちらの本より、入門Git作者: 濱野純(Junio C Hamano)出版社/メーカー: 秀和システム発売日: 2009/09/24メディア: 単行本購入: 31人 クリック: 736回この商品を含むブログ (155件) を見るこちらの…

repo branchのリネーム

Git

repo forall -c git branch -m myfroyo_CR1 myfroyo_cr1

repo pruneを使ったら、よくわからない状態になった。

Git

repo prune ブランチはgitで消した方がいいのかな? git branch -d myFroyo2

repoで過去にもどすには?

Git

これでやったけど、オリジナル以外のファイルが見える。 なんか違うのかな。 repo checkout myfroyo repo forall -c git checkout myrfoyo

repo startでのブランチ

myfroyoブランチができる。 $cd ~/android/android_froyo $repo start myfroyo --all $cd external/skia $git branch * myfroyo ブランチが移る。 $cd ~/android/android_froyo $repo start alpha1 --all $cd external/skia $git branch * alpha1 myfroyo フ…

git config

Git

git config --global user.name "hoge huge" git config --global user.email "hoge@domain.com" git config --global color.ui "auto" 値の確認 git config --global --list

froyoブランチとmasterブランチ

●Froyoブランチ ・Ubuntu 10.04(32bit版) ・Sun-Java-JDK6 ①JDK1.5のエラーがでるのでJDK1.5を入れる。 ・Sun-Java−JDK5 ②64bitのエラーがでる。 やっぱ64ビットにしないといけないのかな? ・Ubuntu 10.04(64bit:amd64)版 ・Sun-Java-JDK6 ①JDK1.5のエラー…