5 lines
92 B
Bash
5 lines
92 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
read -p "Do you really want to pull the lastest version? " c
|
||
|
git pull --rebase
|