Changes between Version 4 and Version 5 of GitCreateBundle


Ignore:
Timestamp:
Oct 15, 2013, 4:31:11 PM (11 years ago)
Author:
Piero Campalani
Comment:

more comments on verify

Legend:

Unmodified
Added
Removed
Modified
  • GitCreateBundle

    v4 v5  
    155155$ git init
    156156
    157 # push two branches to the test repo
     157# Reset the history to where it was /before/ merging (A commit)(simulating public repo status)
    158158$ cd /home/rasdaman/rasdaman
    159159$ git remote add test_remote ~/test_repo
     160$ git checkout master
     161$ git reset --hard 5ee465
     162
     163# Push two branches to the test repo
    160164$ git push test_remote master
    161165$ git push test_remote feature_X
    162166
    163 # Now move to the test repo
     167# Now move to the test repo and checkout on a branch you're not merging into:
    164168$ cd ~/test_repo
    165169$ git branch
    166170  feature_X
    167171* master
    168 
    169 # check out on a branch you're not merging into:
    170172$ git checkout feature_x
    171173$ git branch