Horje
git get stash on another pc Code Example
git get stash on another pc
# 1. Stash current changes
 git stash

# 2. Create stash as patch (0 is the index of the stash)
# If you have multiple stashes, you can use >> to append the next
# stash to the same file
# e.g. .. "stash@{1}" -p >> changes.patch
# .. "stash@{2}" -p >> changes.patch. etc..

 git stash show "stash@{0}" -p > changes.patch

# 3. Apply patch

git apply changes.patch





Shell

Related
increase filesystem space in aix Code Example increase filesystem space in aix Code Example
kali nethunter linux install auf windows Code Example kali nethunter linux install auf windows Code Example
yarn list global packages Code Example yarn list global packages Code Example
change commit message git Code Example change commit message git Code Example
ssh git clone Code Example ssh git clone Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7