Skip to content

Instantly share code, notes, and snippets.

View jaavid's full-sized avatar
:octocat:
Gitting Hubbing

Javid jaavid

:octocat:
Gitting Hubbing
View GitHub Profile
@jaavid
jaavid / remove-wp-parsidate-sponsor-widget.php
Created November 13, 2024 05:08
Remove wp-parsidate Sponsor Widget
<?php
/*
Plugin Name: Remove wp-parsidate Sponsor Widget
Description: Removes the wp-parsidate sponsor widget from the WordPress dashboard.
Version: 1.0
Author: Javid Momeni
*/
// Exit if accessed directly.
defined( 'ABSPATH' ) || exit;
@jaavid
jaavid / private-fork.md
Created November 14, 2016 06:40 — forked from DavideMontersino/private-fork.md
How to fork to a private gitlab instance

Theory:

your git repository can have more than one remote server; In this case we want to have two:

  1. one for our private repository on gitlab (will be the default one, called origin)
  2. one to be connected to the source repo on github, to be able to pull new changes (will be called upstream)

How to make a private fork from github to gitlab