git init
git branch -M main
git branch
git branch --all
git checkout -b newbranch
git checkout branch
git switch
git branch -d name
git branch -D name
-- Comment | |
/* | |
Comments | |
*/ | |
-- create db | |
create database nome; | |
-- delete db | |
drop database nome; |
# directory created by the pycharm | |
.idea | |
# See http://help.github.com/ignore-files/ for more about ignoring files. | |
# Compiled output | |
/dist | |
/tmp | |
/out-tsc | |
/bazel-out |
git init
git branch -M main
git branch
git branch --all
git checkout -b newbranch
git checkout branch
git switch
git branch -d name
git branch -D name
The default branch has been renamed! | |
master is now named main | |
If you have a local clone, you can update it by running the following commands. | |
git branch -m master main | |
git fetch origin | |
git branch -u origin/main main | |
git remote set-head origin -a |
<!DOCTYPE html> | |
<html lang="pt-br"> | |
<head> | |
<meta name="viewport" content="width=device-width" /> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | |
<title>WordPress › Leia-me</title> | |
<link rel="stylesheet" href="wp-admin/css/install.css?ver=20100228" type="text/css" /> | |
</head> | |
<body> | |
<h1 id="logo"> |
{ | |
"brackets-eslint.gutterMarks": true, | |
"brackets-eslint.useLocalESLint": false, | |
"fonts.fontSize": "14px", | |
"fonts.fontFamily": "'SourceCodePro-Medium', MS ゴシック, 'MS Gothic', monospace", | |
"indent": 2, | |
"tabSize": 2, | |
"useTabChar": true, | |
"themes.theme": "dark-theme" | |
} |