GIT Commands

———————————-
SHALLOW CLONE
———————————-

———————————-
CONFLICT
———————————-

———————————-
DOESN’T SHOW ALL REMOTE BRANCHES
———————————-

———————————-
Tutrials
https://www.atlassian.com/git/tutorials/resetting-checking-out-and-reverting/

———————————-
Regenerate Public Keys for OpenSSH Format
———————————-
1. Open the PuTTY Key Generator
2. On the menu bar, click “File” > “Load private key”
3. Select your id_rsa.ppk file
4. On the menu bar, click “Conversions” > “Export OpenSSH key”
5. Save the file as id_rsa preferably extensionless

——————————–
Terminal
——————————–
find ~/ -iname “*.unitypackage”
find / -type d -name “ora10”
$ grep -i “boo” /etc/passwd

-type d: directory
-i: ignore case
-r: recursive (search for many files)

ctrl + c 処理中断

ps aux
a = show processes for all users
u = display the process’s user/owner
x = also show processes not attached to a terminal

Search for Apache processing.
ps aux|grep httpd

——————————–
Command Prompt
——————————–
ファイル名検索
dir “*.txt” /s/b

——————————–
Bash
——————————–
env
echo $PATH
which python
source .bashrc

ページトップへ