rashid jorvee blog
acquire knowledge and impart it to the people
Menu
Environment
About
Tutorials
Java
Adobe AEM
OSGi
SQL
React
AI/ML
JavaScript
EDS
History
First in India
World
Ancient
Medieval
Modern
Tourism
Asia
Europe
Tourism in India
Polity
Constitution of India
Constitution
Government
Poetry
Allama Iqbal
Ameer Khusro
Amjad Islam Amjad
Faiz Ahmed Faiz
Gulzar
Kabeer
Meer Taqi Meer
Mirza Ghalib
Rahat Indori
Rabindranath Tagore
Sahir Ludhianvi
Shakeel Badayuni
Philosophy
Western philosophy
Indian philosophy
Rationalism
Materialism
Quotes
Mahatma Gandhi
Hazrat Ali
Science and Technology
Information
Constitution of India
GoI websites
India
Others
Gallery
Showing posts with label
Git
.
Show all posts
Showing posts with label
Git
.
Show all posts
How to clone a git repo with a new name
›
We can clone any Git repo with new name by specifying folder or directory name while doing the clone. The command will look like this. C...
Remove or delete a Git subtree
›
There are multiple ways to add and remove the subtree in Git repo. git rm -rf plugins/experimentation git rm -rf gitpath
git command to discard/reset a file changes
›
When we make some change in an existing file, but that change doesnt go for commit, in this situation we have to reset the file with the ...
git error fatal: cannot create directory because filename too long
›
A too long file name is an issue while cloing any git repo. We can set a git property longpaths=true to allow the too long file name for gi...
Direct integration of cloud manager in your git repository
›
Would you like to move from adobe managed git in cloud manager to self managed git repository? Adobe cloud manager is now running program wh...
fatal: unable to access 'https://jorvee.bitbucket.com/branch/src/': SSL certificate problem: unable to get local issuer certificate
›
Error: fatal: unable to access 'https://jorvee.bitbucket.com/branch/src/': SSL certificate problem: unable to get local issuer cert...
fatal: refusing to merge unrelated histories
›
While merge the two different branches one could face this issue when both the branches are not created with same parent or base branch. If ...
Resolve code merge conflicts
›
In this blog post, we are going to learn to resolve the conflicts with merge requests or pull requests in Git codebase. Let's assume we...
1 comment:
How to fetch and checkout a git branch?
›
Git is a version control system that is used to store and manage the codebase. A branch from Git can be checkout using Git command > git ...
How to force git pull to overwrite local file changes?
›
git reset --hard HEAD or git reset --hard origin/<branch name> After that take a pull using git pull command to pull all new commi...
Git diff is showing complete file content as changed but there is only few line of changes in file.
›
This is expected behavior of Git diff and there is nothing wrong in this case. See the issue 52036 . When we look the plain diff, we can se...
How to delete commits from a branch in Git?
›
Checkout the branch. e.g we are working here with development branch $ git checkout development Go to the commits list and copy the ...
How to cherry pick multiple commits from a branch to other?
›
It is very common practice to pull push and merge the changes from one branch to other branch for developer. Today we are going to see how...
›
Home
View web version