How to rename a Git branch
https://www.freecodecamp.org/news/renaming-a-git-branch-how-to-rename-the-current-branch-in-git/
#git #branch
https://www.freecodecamp.org/news/renaming-a-git-branch-how-to-rename-the-current-branch-in-git/
#git #branch
freeCodeCamp.org
Renaming a Git Branch – How to Rename the Current Branch in Git
If you are using Git for version control, it’s likely you’ve created branches for various reasons. Since you have those branches in place, you might want to rename any of them if you find a typo, for example, or change the code's purpose. In this article…
Git usage guide for creating new branches in Git
https://www.freecodecamp.org/news/git-push-local-branch-to-remote-how-to-publish-a-new-branch-in-git/
#git #branch
https://www.freecodecamp.org/news/git-push-local-branch-to-remote-how-to-publish-a-new-branch-in-git/
#git #branch
freeCodeCamp.org
Git Push Local Branch to Remote – How to Publish a New Branch in Git
Git branches let you add new features without tampering with the live version of your projects. And if you work in a team, different developers might have unique branches they work on. In the long run, you'll have to push those independent branches ...
Some examples of frequently used Git commands
https://dev.to/wadecodez/the-git-commands-i-use-every-day-5g17
---
Important practice on how to revert code to the previous commit
https://www.freecodecamp.org/news/git-remove-last-commit-how-to-undo-a-commit-in-git/
#git #command #undo #commit
https://dev.to/wadecodez/the-git-commands-i-use-every-day-5g17
---
Important practice on how to revert code to the previous commit
https://www.freecodecamp.org/news/git-remove-last-commit-how-to-undo-a-commit-in-git/
#git #command #undo #commit
DEV Community
The Git Commands I Use Every Day
1. Get all latest changes without merging Stop pulling code that you think will break!...
Reverting the code state to the previous commit
https://www.freecodecamp.org/news/git-reverting-to-previous-commit-how-to-revert-to-last-commit/
#commit #git #revert
https://www.freecodecamp.org/news/git-reverting-to-previous-commit-how-to-revert-to-last-commit/
#commit #git #revert
freeCodeCamp.org
Git Reverting to Previous Commit – How to Revert to Last Commit
Git is a great tool for version control. It also makes collaborating with others more efficient. In this article, you'll learn how to revert to previous commits when tracking your project with Git. The two commands we'll discuss in this article are g...
Some alternatives to Git Checkout are git switch and git restore
https://materokatti.medium.com/do-not-use-git-checkout-anymore-aa73c0a43c13
#git #switch #restore
https://materokatti.medium.com/do-not-use-git-checkout-anymore-aa73c0a43c13
#git #switch #restore
Medium
Do not use ‘git checkout’ anymore
What is ‘git switch and git restore’
A collection of Git commands frequently used by developers
https://medium.com/@dreamy-player/20-git-commands-every-developer-should-know-71cd739b084d
#git #command #developer
https://medium.com/@dreamy-player/20-git-commands-every-developer-should-know-71cd739b084d
#git #command #developer
Interesting Github repository for app developers to follow
https://javascript.plainenglish.io/18-useful-github-repositories-every-developer-should-bookmark-a04df0055888
----
Useful Github tips and tricks for developers
https://javascript.plainenglish.io/8-cool-github-tricks-to-make-you-look-like-a-senior-developer-5c77c170d9e1
#github #git #repository #tips
https://javascript.plainenglish.io/18-useful-github-repositories-every-developer-should-bookmark-a04df0055888
----
Useful Github tips and tricks for developers
https://javascript.plainenglish.io/8-cool-github-tricks-to-make-you-look-like-a-senior-developer-5c77c170d9e1
#github #git #repository #tips
Medium
18 Useful GitHub Repositories Every Developer Should Bookmark 👍💯
Useful resources developers can use to improve their skills and build better projects.
Very long training from Academind on the introduction of Git and operations to Github for application code backup
https://www.youtube.com/watch?v=ulQA5tjJark
#git #github #academind
https://www.youtube.com/watch?v=ulQA5tjJark
#git #github #academind
YouTube
Git & GitHub Crash Course 2023
Learn Git & GitHub today in this FREE crash course!
🖥️ Official Website & Courses
https://academind.com/courses/
👨💻 Full Git / GitHub and GitHub ActionsCourses
https://acad.link/git
https://acad.link/gha
👋 Social Media
https://twitter.com/maxedapps
ht…
🖥️ Official Website & Courses
https://academind.com/courses/
👨💻 Full Git / GitHub and GitHub ActionsCourses
https://acad.link/git
https://acad.link/gha
👋 Social Media
https://twitter.com/maxedapps
ht…
How to use Git Workflow with the help of Bash scripts
https://dev.to/devrx/automate-your-git-workflow-with-this-simple-bash-script-5cm5
#git #workflow
https://dev.to/devrx/automate-your-git-workflow-with-this-simple-bash-script-5cm5
#git #workflow
DEV Community
Automate Your Git Workflow with this Simple Bash Script
The github repository for this script -> Script Hey there fellow coders! 🚀 Ever found yourself...
How to make a good commit and commit message in Git
https://levelup.gitconnected.com/good-commit-vs-your-commit-how-to-write-a-perfect-git-commit-message-6e96ab6357fa
#git #commit
https://levelup.gitconnected.com/good-commit-vs-your-commit-how-to-write-a-perfect-git-commit-message-6e96ab6357fa
#git #commit
Medium
“Good Commit” vs “Your Commit”: How to Write a Perfect Git Commit Message
A good commit shows whether a developer is a good collaborator — Peter Hutterer, Linux.
Forwarded from 👨💻Coder Blast🌋
5 things to keep in mind to write better Git/Github commit messages.
1. Start with a verb (Add, Fix, Update) to indicate what the commit does.
✅
2. Commit message should always be in the present tense to describe what the code does when applied.
❌
✅
3. Your commit message should describe what the commit does and why it is necessary.
❌
✅
4. If applicable, refer to tickets or issues in your commit message.
✅
5. Avoid using complicated technical terms in your commit message to make it understandable across the team.
❌
✅
#git #github #commit
➖➖➖➖➖➖➖➖➖➖➖➖➖
Join @coderblast for more ☑️
Share with your buddies 🤝
1. Start with a verb (Add, Fix, Update) to indicate what the commit does.
✅
Add 2FA for user authentication
2. Commit message should always be in the present tense to describe what the code does when applied.
❌
Added
, Updated
, Fixed
, Refactored
✅
Add
, Update
, Fix
, Refactor
3. Your commit message should describe what the commit does and why it is necessary.
❌
Update styles
✅
Update styles for the homepage
4. If applicable, refer to tickets or issues in your commit message.
✅
Fixes #14: Resolve issue with form submission
5. Avoid using complicated technical terms in your commit message to make it understandable across the team.
❌
Optimize CRUD operations with RESTful APIs using GraphQL
✅
Improve data handling for better API performance
#git #github #commit
➖➖➖➖➖➖➖➖➖➖➖➖➖
Join @coderblast for more ☑️
Share with your buddies 🤝