Donggeon Byeon (변동건) dongb94
- Republic of Korea
- https://dobby-the-house-elf.tistory.com/
View git checkout
# git Document | |
https://git-scm.com/docs/git-checkout | |
# SYNOPSIS | |
git checkout [-q] [-f] [-m] [<branch>] | |
git checkout [-q] [-f] [-m] --detach [<branch>] | |
git checkout [-q] [-f] [-m] [--detach] <commit> | |
git checkout [-q] [-f] [-m] [[-b|-B|--orphan] <new_branch>] [<start_point>] | |
git checkout [-f|--ours|--theirs|-m|--conflict=<style>] [<tree-ish>] [--] <paths>… | |
git checkout [<tree-ish>] [--] <pathspec>… |
View Memo
google FireBase (server) |
View php 파일 절대경로 가져오기
<?php | |
//PHP 파일의 절대경로를 가져오는 코드 | |
$file_server_path = realpath(_); | |
echo ($path); | |
$path = str_replace(basename(__FILE__), "", $file_server_path); | |
echo ($path); | |
?> |