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 :: get database url heroku 
Shell :: how to install soapui on ubuntu 
Shell :: cshell find file by name 
Shell :: update git using cmd 
Shell :: chnage nvm default version 
Shell :: ubuntu fingerprint sudo 
Shell :: How to check if a string is null or empty in PowerShell? 
Shell :: To install mailutils to send mail from linux centos terminal 
Shell :: install vercel npm 
Shell :: echo aws profile 
Shell :: s3 upload file cli 
Shell :: git delete last commit local and remote 
Shell :: tar all files and subdirectories 
Shell :: cmake: not found 
Shell :: sequlize create new migraion 
Shell :: install semantic ui react 
Shell :: how to check my ubuntu version 
Shell :: convert all file names to lowercase linux 
Shell :: install vscode insiders ubuntu 
Shell :: how to remove all files except one in linux 
Shell :: change commit date linux 
Shell :: Remove folder recursively using powershell 
Shell :: ip command not found 
Shell :: reverse shell bash 
Shell :: [ERROR CRI]: container runtime is not running: output: 
Shell :: extract tar.xz ubuntu 
Shell :: doctrine cache clear 
Shell :: apache default config 
Shell :: plasma 
Shell :: vite react + eslint 
ADD CONTENT
Topic
Content
Source link
Name
7+4 =