Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

rename a directory in git

#if case sensitive file renaming problem, run this in your terminal
git config core.ignorecase false

#move file/dir
git mv dir1 dir2 OR git mv filename1 filename2

#if above approach doesn't work, do this
git mv dir1 tmp
git mv tmp dir2
Comment

PREVIOUS NEXT
Code Example
Shell :: vscode publish to github organisation 
Shell :: linux check if a group exist or not 
Shell :: grep word after match 
Shell :: pip install cookiecutter 
Shell :: update time in linux 
Shell :: git folder 
Shell :: sudo: yum: command not found 
Shell :: terminal public ip 
Shell :: pip install influxdb 
Shell :: command line of linux os 
Shell :: Git - create new branch and switch to that new branch 
Shell :: git config log 
Shell :: powershell script example 
Shell :: teams ubuntu 
Shell :: docker build without cache 
Shell :: delete a folder then git push 
Shell :: unexpected inconsistency run fsck manually 
Shell :: npm supertest 
Shell :: github clone with access token 
Shell :: sed replace all until match in line 
Shell :: change dns in openvpn config 
Shell :: Git - show all files that have changes to commit 
Shell :: clean linux 
Shell :: how to install pytesseract in rpi 
Shell :: cor installation 
Shell :: pm2 how to make app start on boot 
Shell :: install ruby environment on ubuntu 20.04 
Shell :: cat dhcp.leases 
Shell :: user friendly linux distro 
Shell :: convert excel to csv command line linux 
ADD CONTENT
Topic
Content
Source link
Name
2+6 =