#gittip search results

Git Tip 😍 add multiple authors to a commit 😎 #100DaysOfCode #github #gittip #git

said_mounaim's tweet image. Git Tip 😍

add multiple authors to a commit 😎

#100DaysOfCode  #github #gittip #git

PAREN TODO #gitTip Pueden creer que de casualidad acabo de descubrir como volver a la última branch de git con la que estaba trabajando? La cantidad de tiempo que me hubiera ahorrado todos estos años 🤯 git checkout - Ahora siento que programo más rápido 👀 jajaja


🌐 Git Essentials: From Start to Collaboration! 🚀 Master the basics with commands like git init and git commit. Track changes, switch branches, and collaborate seamlessly. Ready to level up your version control game? Let's Git it! 🐙💻 #GitTip #VersionControl

dhanuks26's tweet image. 🌐 Git Essentials: From Start to Collaboration! 🚀 Master the basics with commands like git init and git commit. Track changes, switch branches, and collaborate seamlessly. Ready to level up your version control game? Let's Git it! 🐙💻 #GitTip #VersionControl

Find the largest number of changes in a GitHub fork! forkizard, written in #go (see PR 6 of upstream) #GitTip github.com/trufanov-nok/f…

gojimmypi's tweet image. Find the largest number of changes in a GitHub fork! forkizard, written in #go (see PR 6 of upstream) #GitTip

github.com/trufanov-nok/f…

Use "fedex clean" to get rid of anything that’s not part of your git repo. Useful when you want to start from scratch. #gittip

ondrejsevcik's tweet image. Use "fedex clean" to get rid of anything that’s not part of your git repo. Useful when you want to start from scratch. #gittip

Not that is a useful metric, but out of curiosity, I wanted to see how many lines of code my project has so far. Here is the #git command that does that with some file/folder exclusions. #gittip

TomBiscan's tweet image. Not that is a useful metric, but out of curiosity, I wanted to see how many lines of code my project has so far. Here is the #git command that does that with some file/folder exclusions. #gittip

#Git #GitTip #Programming Stash including untracked and and ignored files.

RiccardoOdone's tweet image. #Git #GitTip #Programming 

Stash including untracked and and ignored files.

#gitTip #devTip Delete all local branches except `master` or specified branches using these commands or even better, using a git alias. #git #gitCommands #devTips

codewith_ahsan's tweet image. #gitTip #devTip
Delete all local branches except `master` or specified branches using these commands or even better, using a git alias.

#git #gitCommands #devTips

🔀 Git tip #4: Checkout the previous branch with "git checkout -" #gittip #iosdev

toomasvahter's tweet image. 🔀 Git tip #4: Checkout the previous branch with "git checkout -"
#gittip #iosdev

I’m sure there's a million reasons why you didn’t get that work out in this week. 🙅👎 The baby woke up, you missed my #GITTip #2, you couldn’t NOT watch the next episode of @RealHWAtlanta - quit making excuses and slay! 💕 #MotivationMonday #GITTip #Fitness

GIT_mom's tweet image. I’m sure there's a million reasons why you didn’t get that work out in this week. 🙅👎 The baby woke up, you missed my #GITTip #2, you couldn’t NOT watch the next episode of @RealHWAtlanta - quit making excuses and slay! 💕 #MotivationMonday #GITTip #Fitness

Did you know this git command? You can easily switch between branches. > git checkout - #gittip #git #terminal

speshov's tweet image. Did you know this git command? You can easily switch between branches. 

> git checkout -

#gittip #git #terminal

#Git #GitTip #Programming View a file at a specific commit in Git: `git show SHA:PATH/TO/FILE`

RiccardoOdone's tweet image. #Git #GitTip #Programming 

View a file at a specific commit in Git:
`git show SHA:PATH/TO/FILE`

#Git #GitTip #Programming Copy <oldbranch> (current if not specified) to <newbranch>.

RiccardoOdone's tweet image. #Git #GitTip #Programming 

Copy &amp;lt;oldbranch&amp;gt; (current if not specified) to &amp;lt;newbranch&amp;gt;.

#Git #GitTip #Programming Close a PR / issue in GitHub by ID.

RiccardoOdone's tweet image. #Git #GitTip #Programming 

Close a PR / issue in GitHub by ID.

🔀 Git tip #5: Default branch name can be changed from master to main with: git config --global init.defaultBranch main #gittip #iosdev

toomasvahter's tweet image. 🔀 Git tip #5: Default branch name can be changed from master to main with:  
git config --global init.defaultBranch main
#gittip #iosdev

#Git #GitTip #Programming List branches whose tipes point to the given object.

RiccardoOdone's tweet image. #Git #GitTip #Programming 

List branches whose tipes point to the given object.

Master the art of undoing in Git with `git reset HEAD~`. This command allows you to undo the last commit, saving hours of debugging time! #GitTip #CodeLife


🔧💡 Does Git still track your .env file after adding it to .gitignore? 😵‍💫 This happens because the file was already in the Git cache. To fix it, delete the cache. 🛠️ Look at the example in the image! 👇 🚀 #GitTip #DevTips #Gitignore

Cr1xSh0's tweet image. 🔧💡 Does Git still track your .env file after adding it to .gitignore? 😵‍💫

This happens because the file was already in the Git cache. To fix it, delete the cache. 🛠️ Look at the example in the image! 👇

🚀 #GitTip #DevTips #Gitignore

#gitTip Cut a new branch from a branch you are sitting on


Merging multiple repositories cd <project-a> git checkout -b merged git remote add <project-b> [email protected]:<username>/<project-b>.git git fetch <project-b> -a --tags git merge --allow-unrelated-histories <project-b>/<master> #git #tip #GitTip


git commit --allow-empty -m "you can use allow empty flag to commit/push without actually making any changes." #GitTip #Commit #VersionControl #git #Programming


Did you know that Git and Github can save your hours of frustration? Learn how in our session.🚀 Date: 30th September Register link: bitly.ws/VsaS If you are already a GitHub wizard? Comment below your favourite git tip! ⬇️ #Git #github #gitTip

ChapterbvGfg's tweet image. Did you know that Git and Github can save your hours of frustration? Learn how in our session.🚀
Date: 30th September
Register link: bitly.ws/VsaS
If you are already a GitHub wizard?
Comment below your favourite git tip! ⬇️ 
#Git #github #gitTip

🚀 #GitTip! Want to switch branches but got uncommitted changes? 🌿 Use git stash to save them, switch your branch with git checkout <branch>, then apply the changes back with git stash pop when you're ready! 🔄 #Developer #Git #Coding


🚀 #GitTip: Merge vs. Rebase 🔄 Use 'git merge' to combine branches, preserving their original history. It's like a group photo where everyone stands side by side. Use 'git rebase' to rewrite history, making it a linear story. It's like editing a movie to have a seamless flow.


🌐 Git Essentials: From Start to Collaboration! 🚀 Master the basics with commands like git init and git commit. Track changes, switch branches, and collaborate seamlessly. Ready to level up your version control game? Let's Git it! 🐙💻 #GitTip #VersionControl

dhanuks26's tweet image. 🌐 Git Essentials: From Start to Collaboration! 🚀 Master the basics with commands like git init and git commit. Track changes, switch branches, and collaborate seamlessly. Ready to level up your version control game? Let&apos;s Git it! 🐙💻 #GitTip #VersionControl

#GitTip: Always pull before you push! #Git #VersionControl


#GitTip Use `git st` as a shortcut for `git status` to quickly check changes in your repo! #Git #Programming


#GitTip Always pull before you push to avoid any merge conflicts! #Developer #VersionControl


Run `git status` often to stay on top of your work! #GitTip #StayOnTop


Always add useful commit messages with #gittip for easy reference! #versioncontrol #commits


#GitTip Always push your branches to remote to keep track of progress #VersionControl


Always use #CommitEarlyCommitOften to ensure you keep a good git workflow. #GitTip


#GitTip Use `git reset --soft HEAD^` instead of `git reset --hard HEAD^` to keep your changes! #git #VersionControl


Git Tip 😍 add multiple authors to a commit 😎 #100DaysOfCode #github #gittip #git

said_mounaim's tweet image. Git Tip 😍

add multiple authors to a commit 😎

#100DaysOfCode  #github #gittip #git

Find the largest number of changes in a GitHub fork! forkizard, written in #go (see PR 6 of upstream) #GitTip github.com/trufanov-nok/f…

gojimmypi's tweet image. Find the largest number of changes in a GitHub fork! forkizard, written in #go (see PR 6 of upstream) #GitTip

github.com/trufanov-nok/f…

🌐 Git Essentials: From Start to Collaboration! 🚀 Master the basics with commands like git init and git commit. Track changes, switch branches, and collaborate seamlessly. Ready to level up your version control game? Let's Git it! 🐙💻 #GitTip #VersionControl

dhanuks26's tweet image. 🌐 Git Essentials: From Start to Collaboration! 🚀 Master the basics with commands like git init and git commit. Track changes, switch branches, and collaborate seamlessly. Ready to level up your version control game? Let&apos;s Git it! 🐙💻 #GitTip #VersionControl

#gitTip #devTip Delete all local branches except `master` or specified branches using these commands or even better, using a git alias. #git #gitCommands #devTips

codewith_ahsan's tweet image. #gitTip #devTip
Delete all local branches except `master` or specified branches using these commands or even better, using a git alias.

#git #gitCommands #devTips

Did you know this git command? You can easily switch between branches. > git checkout - #gittip #git #terminal

speshov's tweet image. Did you know this git command? You can easily switch between branches. 

&amp;gt; git checkout -

#gittip #git #terminal

#Git #GitTip #Programming Stash including untracked and and ignored files.

RiccardoOdone's tweet image. #Git #GitTip #Programming 

Stash including untracked and and ignored files.

PAREN TODO #gitTip Pueden creer que de casualidad acabo de descubrir como volver a la última branch de git con la que estaba trabajando? La cantidad de tiempo que me hubiera ahorrado todos estos años 🤯 git checkout - Ahora siento que programo más rápido 👀 jajaja


#Git #GitTip #Programming List branches whose tipes point to the given object.

RiccardoOdone's tweet image. #Git #GitTip #Programming 

List branches whose tipes point to the given object.

#Git #GitTip #Programming Copy <oldbranch> (current if not specified) to <newbranch>.

RiccardoOdone's tweet image. #Git #GitTip #Programming 

Copy &amp;lt;oldbranch&amp;gt; (current if not specified) to &amp;lt;newbranch&amp;gt;.

#Git #GitTip #Programming View a file at a specific commit in Git: `git show SHA:PATH/TO/FILE`

RiccardoOdone's tweet image. #Git #GitTip #Programming 

View a file at a specific commit in Git:
`git show SHA:PATH/TO/FILE`

I’m sure there's a million reasons why you didn’t get that work out in this week. 🙅👎 The baby woke up, you missed my #GITTip #2, you couldn’t NOT watch the next episode of @RealHWAtlanta - quit making excuses and slay! 💕 #MotivationMonday #GITTip #Fitness

GIT_mom's tweet image. I’m sure there&apos;s a million reasons why you didn’t get that work out in this week. 🙅👎 The baby woke up, you missed my #GITTip #2, you couldn’t NOT watch the next episode of @RealHWAtlanta - quit making excuses and slay! 💕 #MotivationMonday #GITTip #Fitness

#Git #GitTip #Programming Reference a PR / issue in GitHub by ID. The commit will appear in the PR / issue.

RiccardoOdone's tweet image. #Git #GitTip #Programming 

Reference a PR / issue in GitHub by ID. The commit will appear in the PR / issue.

#Git #GitTip #Programming List branches which do not contain the specified commit (HEAD if not specified).

RiccardoOdone's tweet image. #Git #GitTip #Programming 

List branches which do not contain the specified commit (HEAD if not specified).

#Git #GitTip #Programming Set the commit message to be used for the merge commit (in case one is created).

RiccardoOdone's tweet image. #Git #GitTip #Programming 

Set the commit message to be used for the merge commit (in case one is created).

🔧💡 Does Git still track your .env file after adding it to .gitignore? 😵‍💫 This happens because the file was already in the Git cache. To fix it, delete the cache. 🛠️ Look at the example in the image! 👇 🚀 #GitTip #DevTips #Gitignore

Cr1xSh0's tweet image. 🔧💡 Does Git still track your .env file after adding it to .gitignore? 😵‍💫

This happens because the file was already in the Git cache. To fix it, delete the cache. 🛠️ Look at the example in the image! 👇

🚀 #GitTip #DevTips #Gitignore

#Git #GitTip #Programming Close a PR / issue in GitHub by ID.

RiccardoOdone's tweet image. #Git #GitTip #Programming 

Close a PR / issue in GitHub by ID.

Not that is a useful metric, but out of curiosity, I wanted to see how many lines of code my project has so far. Here is the #git command that does that with some file/folder exclusions. #gittip

TomBiscan's tweet image. Not that is a useful metric, but out of curiosity, I wanted to see how many lines of code my project has so far. Here is the #git command that does that with some file/folder exclusions. #gittip

Loading...

Something went wrong.


Something went wrong.


United States Trends