Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

show the list of file of a commit

git show --name-only <sha1>
# if we don't want the info to the commit with it 
git show --pretty="" --name-only b5b01b7
Comment

list of files in git commit

$ git diff-tree --no-commit-id --name-only -r bd61ad98
index.html
javascript/application.js
javascript/ie6.js
Comment

how to see all files in commit

$ git show --pretty="" --name-only bd61ad98    
index.html
javascript/application.js
javascript/ie6.js
Comment

PREVIOUS NEXT
Code Example
Shell :: how to install desktop application in flutter 
Shell :: git flow init 
Shell :: update pip 
Shell :: github actions configure aws credentials 
Shell :: a script that generates the assembly code of a c code and save it in an output file 
Shell :: set gunicorn timeout via command 
Shell :: download the Laravel installer using Compose 
Shell :: ubuntu arial font 
Shell :: android studio (not installed) flutter ubuntu 
Shell :: npm install production only 
Shell :: gitlab ee version check 
Shell :: unzip a tar.gz file in linux 
Shell :: install jekyll 
Shell :: mix ecto.migrate 
Shell :: conda install packages from requirements.txt 
Shell :: sudo apt uninstall 
Shell :: how to disable password for ssh sudo users only 
Shell :: how to add .env to gitignore 
Shell :: install deb file in manjaro 
Shell :: how to kill intellij process in linux 
Shell :: get request linux terminal 
Shell :: rails no migration with version number 
Shell :: reset gui linux 
Shell :: centos web panel install 
Shell :: grep nth line after match 
Shell :: how to update visual studio code through ubuntu terninal 
Shell :: linux get full path 
Shell :: scp folder from server to local 
Shell :: spaceship zsh 
Shell :: git see tags 
ADD CONTENT
Topic
Content
Source link
Name
7+3 =