Clone rotsim2d
repository:
git clone git@github.com:gkowzan/rotsim2d.git
You want to fix the last commit, change the commit message or completely change the commit:
git commit --amend
You want to change the messages of many commits (use reword and edit):
git rebase --interactive 5409de0
You want to modify some previous commit (modify typo in raw_amp_to_amp
):
git rebase --interactive 5409de0
You added several new features in quick succession but your work was a bit haphazard:
You want to clean up the history before pushing these changes to remote repository:
or even:
enter git rebase
.
Combine windows scripts commits (reorder and then squash):
git rebase -i 14dbd52
Split commit 142c2db into two:
git rebase -i 3d3691b
git reset HEAD^
git add --patch rotsim2d/symbolic/results.py
git commit -m 'add theta_labels'
git add rotsim2d/symbolic/results.py
git commit -m 'add polarization conditions'
git rebase --continue
Download rpi_stepper_motors
repository from
http://fizyka.umk.pl/~gkowzan/teaching/python3/class2/rpi_stepper_motors.zip
Exercise 1: Change the commit message of the last commit from "working" to "fixed limit checking in Move"
Exercise 2: Combine the last two commits (bc4926a, 7c4af8b) into one.
Exercise 3: Split commit 1034483 into two commits: removed looper function, removed old functions.
You commonly want to put your code on some server to access it from another computer or share it with others.
Most common services that allow it are: Github, Gitlab, Bitbucket.
We will use Github.
Add remote for your repository:
git remote add github <url>
Try pushing and pulling. Set upstream.
Clone repository to a different directory.
Rename main branch, change main branch on github, remove old remote branch.
Introduce conflicting changes in remote repo and local copy.
Use git pull with rebase strategy to resolve the problem.
Exercise 1: Make a new private repository on github. Clone the repository. Rename the remote from origin
to github
. Add a file README.md and push it to github.
We can use git log to see only the changes we want to see.
git log --oneline -S pws_autospan
shows only commits that changed the number of occurrences of pws_autospan
, so it will show when the function definition and its uses were introduced. It won't show changes to the function body.
To track evolution of a function we can use:
git log --oneline -L :pws_autospan:rotsim2d/propagate.py
Exercise 1: Find all commits that changes pws_autospan
. Split each commit to contain only changes to the pws_autospan
function. Combine the pws_autospan
commits into a single commit.