define a new index NAME CREATE_INDEX - define a new index SYNOPSIS CREATE [ UNIQUE ] INDEX [ CONCURRENTLY ] [ [ IF NOT EXISTS ] name ] ON [ ONLY ] table_name [ USING method ] ( { c…A Git core tutorial for developers NAME gitcore-tutorial - A Git core tutorial for developers SYNOPSIS git * DESCRIPTION This tutorial explains how to use the "core" Git commands t…rebuild indexes NAME REINDEX - rebuild indexes SYNOPSIS REINDEX [ ( option [, ...] ) ] { INDEX | TABLE | SCHEMA } [ CONCURRENTLY ] name REINDEX [ ( option [, ...] ) ] { DATABASE | …change a database NAME ALTER_DATABASE - change a database SYNOPSIS ALTER DATABASE name [ [ WITH ] option [ ... ] ] where option can be: ALLOW_CONNECTIONS allowconn CONNECTION LIMIT…A Git Glossary NAME gitglossary - A Git Glossary SYNOPSIS * DESCRIPTION alternate object database Via the alternates mechanism, a repository can inherit part of its object database…A tutorial introduction to Git: part two NAME gittutorial-2 - A tutorial introduction to Git: part two SYNOPSIS git * DESCRIPTION You should work through gittutorial (7) before rea…create new rows in a table NAME INSERT - create new rows in a table SYNOPSIS [ WITH [ RECURSIVE ] with_query [, ...] ] INSERT INTO table_name [ AS alias ] [ ( column_name [, ...] )…A useful minimum set of commands for Everyday Git NAME giteveryday - A useful minimum set of commands for Everyday Git SYNOPSIS Everyday Git With 20 Commands Or So DESCRIPTION Git …define a new tablespace NAME CREATE_TABLESPACE - define a new tablespace SYNOPSIS CREATE TABLESPACE tablespace_name [ OWNER { new_owner | CURRENT_ROLE | CURRENT_USER | SESSION_USER…show the execution plan of a statement NAME EXPLAIN - show the execution plan of a statement SYNOPSIS EXPLAIN [ ( option [, ...] ) ] statement where option can be one of: ANALYZE […change the definition of an index NAME ALTER_INDEX - change the definition of an index SYNOPSIS ALTER INDEX [ IF EXISTS ] name RENAME TO new_name ALTER INDEX [ IF EXISTS ] name SET…garbage-collect and optionally analyze a database NAME VACUUM - garbage-collect and optionally analyze a database SYNOPSIS VACUUM [ ( option [, ...] ) ] [ table_and_columns [, ...]…A tutorial introduction to Git NAME gittutorial - A tutorial introduction to Git SYNOPSIS git * DESCRIPTION This tutorial explains how to import a new project into Git, make change…An overview of recommended workflows with Git NAME gitworkflows - An overview of recommended workflows with Git SYNOPSIS git * DESCRIPTION This document attempts to write down and …change the definition of a table NAME ALTER_TABLE - change the definition of a table SYNOPSIS ALTER TABLE [ IF EXISTS ] [ ONLY ] name [ * ] action [, ... ] ALTER TABLE [ IF EXISTS …Git command-line interface and conventions NAME gitcli - Git command-line interface and conventions SYNOPSIS gitcli DESCRIPTION This manual describes the convention used throughout…define a new table NAME CREATE_TABLE - define a new table SYNOPSIS CREATE [ [ GLOBAL | LOCAL ] { TEMPORARY | TEMP } | UNLOGGED ] TABLE [ IF NOT EXISTS ] table_name ( [ { column_nam…Git for CVS users NAME gitcvs-migration - Git for CVS users SYNOPSIS git cvsimport * DESCRIPTION Git differs from CVS in that every working tree contains a repository with a full c…cluster a table according to an index NAME CLUSTER - cluster a table according to an index SYNOPSIS CLUSTER [ ( option [, ...] ) ] [ table_name [ USING index_name ] ] where option …Helper programs to interact with remote repositories NAME gitremote-helpers - Helper programs to interact with remote repositories SYNOPSIS git remote-<transport> <repository> [<UR…