Git is a technology which can be endlessly explained, but sometime demonstrations are best.
What does a typical day look like for you and your relationship with git
?
Git is a technology which can be endlessly explained, but sometime demonstrations are best.
What does a typical day look like for you and your relationship with git
?
For further actions, you may consider blocking this person and/or reporting abuse
I stick to the basics and really only add, commit, and push!
What about branching practices?
Ah! I’ve always used feature branches off of master that are small and try to keep them open for only a few days.
he always push to master 🤓
Me too, that's 99.9% what I do when I use git
Hey, I know it's behind a paywall but I'm still gonna mention it. I published a git course a while back on Egghead (egghead.io/courses/productive-git-...). The goal of the course was not to be just another "I'm a git magician" type of course, but rather to show a few IMHO simple git commands that can dramatically improve your dev experience. In fact the course describes pretty much what I'm using on a daily basis and what proved to work (at least in my case).
It's a mixture of
--fixup
commits to later autosquash)master
meanwhile)master
once reviewed and ready (to have a linear git history)Also, using conventional git commit messages for better readability, like
When starting a change/set of changes:
Then, it's typically a cycle of:
Once it's ready to merge, I create a PR on GitHub to merge with
master
.After the merge:
Repeat until the end of time. 😄
This is really only a summary. There are obviously other things occasionally.
And sometimes:
Some notes:
changelog
is an alias for grabbing all commit messages in a range, minus any that come from branches that were merged (the opposite of excluding merge messages).changelog
functionality automatic when merging intomaster
. Past attempts have failed unfortunately (although I'd be open to suggestions; I'm on Windows).P.S.
I'll try to remember to share this alias if anyone wants it. I'll have to come back over lunch Monday and add it though.
10 years ago I had to resort to using more exotic commands such as
rebase -i
. The more confused your team is the more you need know git to get things unstuck.In the morning I do a quick
git status
to see what the state of my repo is. Usually, I have a feature I'm working on, for which I have a branch. Sometimes I'm in the middle of some big task which I should have divided into smaller ones and committed ages ago, and the status command helps me rebuild the mental model of what changes I've made. So I make some more changes, add them and commit.I try to remind myself to regularly merge "master" back into my feature branch. Resolving conflicts is easier when they're small.
I push my branch and make a PR fairly early, so that CircleCI runs all the tests for me. As an added benefit for remote work, build results trigger a message in our team's slack, so a push+build gives a visible sense of my progress to the rest of the team.
Then I request 1 or 2 team mates to review my code. I apply the review comments I agree with, and start discussions on the ones I disagree with. When all reviewers give it a thumbs up, the last reviewer merges it into master. Then the branch on Github is deleted, and I delete my local feature branch. I go back to master and pull, before creating a new feature branch for the next thing I work on.
We use Bitbucket at work and I normally find myself creating branches there instead of directly in git... Then the usual.. lots of commits and then push to origin
Fairly often find the need for a rebase, occasionally a cherry pick, and when everything goes terribly wrong, a bisect to find where it all went pear shaped 😂
Pretty much only add, commit, push, & merge like everyone else has said. I've starting implenting some CI/CD type stuff into my projects so that has me working with Branches a lot more.
Biggest thing I'm really focusing on is writing more useful commit messages. Too many have just been "stuff" "more stuff" and "idk" which isn't a super huge problem when I'm working on stuff myself, but it definitely won't fly when actually working with a team.
start:
if (no current task) goto
New Task
Old Task:
gco <branch-name
goto
work
New Task:
gcb <branch-name>
work:
(... bunch of typing here...)
Quick check:
gst
Add All:
gaa
Then commit:
gc
if (not finished or no urge to backup everything online) goto
work
push:
Push using the local branch name:
ggpush
if (no conflicts) goto
finish
Resolve conflict with master:
gm master
(I used neovim and fugitive to resolve the actual conflict)
go to
push
finish:
back to master:
gco master
Pull all changes:
gl
if (not end of day) goto
start
oh-my-zsh with the git plugin for the aliases
Mostly the basics, as others are saying. Add, commit, push, merge. Occasionally I'll have a legitimate reason to use
cherry-pick
, which always feels fun to use for some reason.Even when it is just myself working on something, I try to avoid commands that "rewrite history", so I don't get in the habit of using them.
Things I've been trying to do more of lately:
A neat "trick" I recently learned is how to merge branches without switching to them. Not really needed often, but feels cool to use:
Essentially you're saying fetch
.
(as an alias for local), get the head / latest commit of {localBranchA}, and then fast-forward {localBranchToMergeAInto} to point to it. See this for details.I recently started using stash in addition to the all the basics. Other than that is pretty straightforward. You really get a good feeling of your workflow when collaborating. If you just use master to do everything you will just use the very bare bones of git.
Got a handful of aliases for my workflow, like, co, gs, gcm, gfu, gfo, gmu, gmo, etc just to avoid typing same things over and over lol.
add -p, commit, checkout (with -b sometimes), push and commit --amend mostly for all the typos I'm prone to making lol
git gui
git fixup
gitk
git rebase -i
git rebase -i
I actually spend a lot of time looking at other's history. Code review, tracking down the cause of a bug.
From that I do spend a lot of time organizing my changes so other's can review and we have good records of why things are changing (better records).
start the day by doing checkout of develop branch and pulling any changes. Next I'll checkout 'mine' branch and merge develop onto it before getting to work. Commits take place when I complete a unit of work or need to pull changes from somebody else. I've been using broken commits lately and amending them with follow up to fix the issue. After work is complete then I move back to develop and pull before merging my work onto develop and pushing it up to remote.
Note: I tend to trust IntelliJ with my adding and merging.
I mostly pull from master, checkout a feature branch which could be brand new or ongoing, I push to its origin and rebase it from master if needed.
Before pushing I obviously have to check the diffs, then add things to the staging area and if everything is okay I commit with a message.
Seldom I revert or undo some changes or navigate through the logs.
I also prune local and remote branches regularly.
Finally at the end of the week I take a look at the logs to refresh my memory about what has happened.
This is my flow on DEV's code.
Most of the time just committing and pushing. Sometimes stash if I started doing something and somebody ask me to fix a bug and what I did was not enough for a commit. Now, with vscode and its good integration with git you don't even have to run the commands but I still do itbecause I don't wanna forget them
My typical day is staging, committing, pushing, pulling. All pretty straightforward. Sometimes a bit of rebasing before I push to remote if I want to clean up the history to make it a little more coherent.
It's the atypical days that are more interesting, in all senses of the word. :) I've had rebases from master go horribly, horribly wrong, to the point I had to delve into the reflog to undo the whole process and start over.
Despite being (relatively) comfortable with all of that, I still have to keep looking up the command to check out a remote branch into a new local branch just to make sure I'm not about to do something horrible to my repository.
and someone merges my branch to master. I'm doing:
I use git constantly. Doing Open Source work a lot and actually having an interest in learning git deeply motivates me to spend a lot of time screwing around with it!
I stick to the mantra of commit small, often. If anything goes wrong, I can easily revert specific changes!
Besides that, I embrace Git Flow and the basic commands including rebase!
I do this too. Whenever I get to a small “milestone” I push my changes in case I need to go back 👌🏼
In the evenings I like to relax by using
git clone
on a fresh Flatiron coursework repo.I'm using Tower on Mac, and the git extension of VSCode, my best days of using
git
is when I'm only pushing into themaster
branch on my personal projects.ohshitgit is a browser keyword and shell function to open that page, plus I have a git alias for "fuck-this-noise" which nukes and re-clones the current repo...
Following the git flow and I have git cheat sheet in case I need help, so I avoid having to google the same questions over and over... Which can be time-consuming...
Branch, add, commit, push, pr/merge & delete remote, delete local, repeat.
git status
git add
git commit -am
git checkout -b new-feature
git push
git pull from the master branfh if I merge my own pull request on GitHub
git merge if therr are conflicts on my merge 😀
If my colleagues has pushed some changes:
git stash
git pull --rebase
git stash apply
😅😁
I use VS Code git gui for branching, adding, committing, merge conflicts. I use git command line for rebasing, resetting, looking at logs, reflogs and pushing.
git rebase
The basic, add commit push, and the rare checkout. A lot of merge. Very less revert.
oh-my-zsh aliases make it easy for me: gcb, gaa, gcmsg, gp
GitHub Flow for branching.
Jenkins builds most stuff (migrating everything now) and handles deploys.
Peer review PRs or I step in and specifically code review "architected" things.
Git Error: Check Git Log 😂😂😂
add commit push mainly with creating branches.
Also most of the times have to use rebase, fetch and stash.
Add. Commit. Push. Exhale.
It’s cool seeing how all the developers are using git.