User Tools

Site Tools


git:git_resources

This is an old revision of the document!


Git Resources

DAG code repository: https://github.com/dagdpz

Test repository to try things out: https://github.com/dagdpz/test LOL

Really easy GUI client for Win or Mac: https://windows.github.com/

Intuitive and more powerful client, Win, Linux, Mac: http://www.collab.net/downloads/giteye

To add repositories to MATLAB path, excluding .git, add the following in startup.m

addpath(genpath_exclude('...Repos','.git')); % genpath_exclude function in Igtools/external 

Basic ideas:

1. Create repository:

New >

2. For an existing repository:

2.1 When you are working on your own or sequentially (i.e. no concurrent edits)

GitHub: sync, change code, commit and sync (now you should see changes online)

(OR)

GitEye: pull, change code, commit and push (now you should see changes online)

2.2 When editing concurrently (by >1 person) and doing the same as in 2.1:

Sync conflict!

<<<<<<< HEAD
% concurrent edit from IKDAG (after the file was already edited and committed from igor.broadmonk)
=======
% concurrent edit from igor.broadmonk
>>>>>>> origin/master

Resolve conflicts, then commit and push/sync again

2.3 Working with branches

2.3.1 Create new branch

2.3.2 Do same as 2.1

2.3.3 Pull Request > New pull request > Create Pull Request > Merge pull request

More detailed help

Obsolete

(Note: Google Code has been discontinued as of 2015)

https://code.google.com/hosting/settings

https://code.google.com/p/dagcode/

git/git_resources.1501006259.txt.gz · Last modified: 2022/12/29 07:15 (external edit)