Changes between Version 15 and Version 16 of DRM4G/Development
- Timestamp:
- Dec 12, 2016 5:02:57 PM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DRM4G/Development
v15 v16 14 14 15 15 [[br]] 16 == Necessary Steps ==16 == Necessary steps == 17 17 18 18 There are a lot of tutorials showing how to use git, including [[wiki:versionControl/git|our own]], but this is more straightforward explanation on how to get started. … … 24 24 git init #to initialize an empty Git repository 25 25 git remote add origin https://meteo.unican.es/gitbucket/git/DRM4G/DRM4G.git #to make your local repository point to the remote repository in GitBucket 26 git fetch 26 27 git checkout master #to create a local repository of the master branch 27 28 git checkout develop #to create a local repository of the develop branch … … 30 31 31 32 With this, you will now have DRM4G's source code at your disposal. 33 34 {{{#!comment 35 https://help.github.com/articles/fetching-a-remote/ - aquí se ve como se podría hacer sin sar la interfaz de github, con el comando "git clone" 36 }}} 32 37 33 38