Hi All, where can i find the latest source code for latest jsystem (6.0.02)
Thanks
if i'm not mistaken, on git: https://github.com/Top-Q/jsystem
you can clone the project to your workspace and follow the instruction on the readme
Thanks, I've checked and this is the source code for 6.0.03 and i need the source code for 6.0.02
then maybe this? https://github.com/Top-Q/jsystem/releases/tag/6.0.02
the above link is a zip or tgz file which great but is there any svn link that i could checkout the code from?
Found it, its can be checked out using svn using the below link: https://github.com/Top-Q/jsystem.git/tags/6.0.02
Just a little comment.
The project needs to be cloned by Git and not by SVN since the SCM that in use is Git.
All versions since 6.0.00 can be found as tags in the repository.
Hi Itai, i tried to clone the 6.0.02 using Git and failed, the command line i invoked was: "git clone https://github.com/Top-Q/jsystem.git/tags/6.0.02" and got the below:
C:\test>git clone https://github.com/Top-Q/jsystem.git/tags/6.0.02 Cloning into '6.0.02'... fatal: repository 'https://github.com/Top-Q/jsystem.git/tags/6.0.02/' not found
but when i clone the trunk it works fine. what am I missing?
On Sun, Jan 19, 2014 at 8:59 PM, Itai Agmon itai_agmon@users.sf.net wrote:
Just a little comment. The project needs to be cloned by Git and not by SVN since the SCM that in use is Git. All versions since 6.0.00 can be found as tags in the repository. jsystem 6.0.02 source codehttps://sourceforge.net/p/jsystemtest/discussion/397999/thread/034f549e/?limit=25#986f Sent from sourceforge.net because you indicated interest in https://sourceforge.net/p/jsystemtest/discussion/397999/ To unsubscribe from further messages, please visit https://sourceforge.net/auth/subscriptions/
Sent from sourceforge.net because you indicated interest in https://sourceforge.net/p/jsystemtest/discussion/397999/
To unsubscribe from further messages, please visit https://sourceforge.net/auth/subscriptions/
Hi Eran.
Some familiarity with Git is required in order to work with Github repositories.
Try the following command sequence:
~~~~~~~
git clone https://github.com/Top-Q/jsystem.git cd jsystem git checkout 6.0.02
~~~~~~~~
Log in to post a comment.
Hi All,
where can i find the latest source code for latest jsystem (6.0.02)
Thanks
if i'm not mistaken, on git:
https://github.com/Top-Q/jsystem
you can clone the project to your workspace
and follow the instruction on the readme
Thanks, I've checked and this is the source code for 6.0.03 and i need the source code for 6.0.02
then maybe this?
https://github.com/Top-Q/jsystem/releases/tag/6.0.02
the above link is a zip or tgz file which great
but is there any svn link that i could checkout the code from?
Found it, its can be checked out using svn using the below link:
https://github.com/Top-Q/jsystem.git/tags/6.0.02
Just a little comment.
The project needs to be cloned by Git and not by SVN since the SCM that in use is Git.
All versions since 6.0.00 can be found as tags in the repository.
Hi Itai,
i tried to clone the 6.0.02 using Git and failed, the command line i
invoked was:
"git clone https://github.com/Top-Q/jsystem.git/tags/6.0.02"
and got the below:
C:\test>git clone https://github.com/Top-Q/jsystem.git/tags/6.0.02
Cloning into '6.0.02'...
fatal: repository 'https://github.com/Top-Q/jsystem.git/tags/6.0.02/' not
found
but when i clone the trunk it works fine.
what am I missing?
On Sun, Jan 19, 2014 at 8:59 PM, Itai Agmon itai_agmon@users.sf.net wrote:
Hi Eran.
Some familiarity with Git is required in order to work with Github repositories.
Try the following command sequence:
~~~~~~~
~~~~~~~~