fedora-packages

(★ 58)

A webapp that allows searching packages in Fedora. Written in Python using TurboGears2 and Moksha.

File Explorer

  • .gitignore
  • AUTHORS
  • bootstrap.py
  • CHANGELOG.rst
  • COPYING
  • development.ini
  • fedora-packages.spec
  • fedora-packages.wsgi
  • logrotate
  • MANIFEST.in
  • README.md
  • setup.cfg
  • setup.py
  • test.ini
  • Vagrantfile
  • validate_templates.py

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

git push

View Details ▼

Push commits to a remote repository.

git push

Send local changes in the current branch to its default remote counterpart:

git push {{remote_name}} {{local_branch}}

Send changes from a specific local branch to its remote counterpart:

git push {{[-u|--set-upstream]}} {{remote_name}} {{local_branch}}

Send changes from a specific local branch to its remote counterpart, and set the remote one as the default push/pull target of the local one:

🔍

git tag

View Details ▼

Create, list, delete, or verify tags.
A tag is a static reference to a commit.

git tag

List all tags:

git tag {{tag_name}}

Create a tag with the given name pointing to the current commit:

git tag {{tag_name}} {{commit}}

Create a tag with the given name pointing to a given commit:

🔍

vagrant ssh

View Details ▼

SSH into a running Vagrant machine.
See also: `vagrant`.

vagrant ssh

SSH into the machine running in the current directory:

vagrant ssh {{name|id}}

Target a running machine by name or ID:

vagrant ssh {{[-c|--command]}} {{ssh_command}}

Execute an SSH command and exit:

🔍

vagrant

View Details ▼

Manage lightweight, reproducible, and portable development environments.
Some subcommands such as `box`, `snapshot`, `halt`, etc. have their own usage documentation.

vagrant init

Create a `Vagrantfile` in the current directory with the base Vagrant box:

vagrant init {{ubuntu/focal64}}

Create a `Vagrantfile` with a box from the Vagrant Public Registry:

vagrant up

Start and provision the Vagrant environment:

// repository documentation