π Just deployed my latest project, PentG! π¨πΌοΈ It's an online marketplace for artists to showcase and sell their paintings.
Check it out and let me know your thoughts! Your feedback is highly appreciated! πβ¨
π https://t.co/eqy032dDGC
#WebDevelopment#React#Nodejs#MERN
π Just deployed my latest project, PentG! π¨πΌοΈ It's an online marketplace for artists to showcase and sell their paintings.
Check it out and let me know your thoughts! Your feedback is highly appreciated! πβ¨
π https://t.co/eqy032dDGC
#WebDevelopment#React#Nodejs#MERN
8.git pull: Fetch & merge changes.
e.g-> git pull origin main
10.git push: Push changes to remote.
e.g-> git push origin main
11.git branch: Manage branches.
-git branch -a (display all branches)
-git branch x (creates x as new branch)
......
12.git checkout: Switch branches.
e.g-> git checkout x (switch to x branch)
13.git merge: Merge branches.
e.g-> git merge x (merges branch x with current branch)
#Git#VersionControl#Coding#DevTools
πUnderstanding Git Cherry-Pick! π§
Git Cherry-Pick means 'Selecting a single commit from one branch and apply it to another'.
When to Use Git Cherry-Pick?
1.Apply specific changes without merging an entire branch.
2.Bring useful commits from other developers' branches.
HTU?