git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
Windows Registry Editor Version 5.00 | |
; Open files | |
[HKEY_CLASSES_ROOT\*\shell\Open with VS Code] | |
@="Edit with VS Code" | |
"Icon"="C:\\Program Files (x86)\\Microsoft VS Code\\Code.exe,0" | |
[HKEY_CLASSES_ROOT\*\shell\Open with VS Code\command] | |
@="\"C:\\Program Files (x86)\\Microsoft VS Code\\Code.exe\" \"%1\"" | |
; This will make it appear when you right click ON a folder | |
; The "Icon" line can be removed if you don't want the icon to appear | |
[HKEY_CLASSES_ROOT\Directory\shell\vscode] |
git config --global --unset http.proxy | |
git config --global --unset https.proxy |
git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
Format Pencarian Titik Koordinat Desa di Google Maps
[nama desa], [nama kecamatan], [nama kabupaten/kota], [nama provinsi]
Ciburial, Cimenyan, Bandung, Jawa Barat
git checkout -b my-new-feature
);git commit -am 'Add some feature'
);git push origin my-new-feature
);Public Function GetURL(c As Range) As String | |
On Error Resume Next | |
GetURL = c.Hyperlinks(1).Address | |
End Function |
fix Failed to execute "git ls-remote --tags --heads git:// | |
git config --global url."https://".insteadOf git:// | |
atau | |
fix Failed to execute "git ls-remote --tags --heads https:// | |
git config --global url."git://".insteadOf https:// |
Standar CodeIgniter memformat URL stringnya: | |
<base_url>/index.php/<controller_name>/<controller_function>/<function_parameter_1>/>/<function_parameter_2>... |