Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[solved] git checkout ppsspp's specific version e.g. v0.9.5-571-g7ec0069
11-22-2013, 06:18 PM (This post was last modified: 11-22-2013 07:03 PM by fastrizwaan.)
Post: #1
[solved] git checkout ppsspp's specific version e.g. v0.9.5-571-g7ec0069
How do we checkout specific revison version even when there is no previous download or git clone folder. this is to download specific ppsspp version from the based on specific version like v0.9.5-571-g7ec0069. I forgot how to do that.

It'd be great if we directly could download a specific revision!

UPDATE: ok this seems to work:

git clone https://github.com/hrydgard/ppsspp.git
cd ppsspp
git checkout -b v0.9.5-571-g7ec0069
git submodule update --init
Find all posts by this user
Quote this message in a reply
11-22-2013, 09:17 PM (This post was last modified: 11-22-2013 09:17 PM by [Unknown].)
Post: #2
RE: [solved] git checkout ppsspp's specific version e.g. v0.9.5-571-g7ec0069
I've never tried it (--branch with a commitish) but theoretically this could work:

git clone https://github.com/hrydgard/ppsspp.git --branch v0.9.5-571-g7ec0069 --single-branch --recursive

-[Unknown]
Find all posts by this user
Quote this message in a reply
11-23-2013, 04:10 PM
Post: #3
RE: [solved] git checkout ppsspp's specific version e.g. v0.9.5-571-g7ec0069
(11-22-2013 09:17 PM)[Unknown] Wrote:  I've never tried it (--branch with a commitish) but theoretically this could work:

git clone https://github.com/hrydgard/ppsspp.git --branch v0.9.5-571-g7ec0069 --single-branch --recursive

-[Unknown]

# git clone https://github.com/hrydgard/ppsspp.git --branch v0.9.5-571-g7ec0069 --single-branch --recursive
Cloning into 'ppsspp'...
warning: Could not find remote branch v0.9.5-571-g7ec0069 to clone.
fatal: Remote branch v0.9.5-571-g7ec0069 not found in upstream origin
Unexpected end of command stream

it's not working. thanks though Smile
Find all posts by this user
Quote this message in a reply
11-25-2013, 11:08 AM
Post: #4
RE: [solved] git checkout ppsspp's specific version e.g. v0.9.5-571-g7ec0069
git clone ...
cd ppsspp
git checkout 7ec0069

?
Find all posts by this user
Quote this message in a reply
Post Reply 


Forum Jump: