shlogg · Early preview
Super Kai (Kazuya Ito) @superkai_kazuya

How To Clone A Private Repository With FGPAT From Github

Learn IPython magic commands for Unix/Linux and Git operations in this post! %pwd shows current directory, %ls lists files & folders, %cd changes dir, %rm removes items. Also, clone private repos with FGPAT or PAT from Github.

Buy Me a Coffee☕
*Memos:

My post explains how to clone a private repository with FGPAT(Fine-Grained Personal Access Token) from Github.
My post explains how to clone a private repository with PAT(Personal Access Token) from Github.

An IPython magic command is the special code which basically starts with % or %% but sometimes ! or !!:
*Memos:

Basically, % or %% works more than ! or !! so only if % or %% doesn't work use ! or !!.
There are the magic commands which work only with % or ! but not with %% or !!.
I have never seen the magic commands which work with !!.
The magic commands with % o...