What happened to my GitHub repository? - github-enterprise

We have several repo's In an on-premise GitHub.
One of them is missing...
We can re-create it, but is there any way to see the history on that?
Like who deleted it?

Ask the admin to see the audit log: https://help.github.com/articles/reviewing-the-audit-log-for-your-organization/

Related

How do GitHub repository work? (Firebase)

So I was installing firestore (ran firebase init) and I linked my GitHub ACCOUNT. I am new to GitHub and I don't really understand what the console is asking me regarding 'Git Hub repository .... format'. Could someone please tell me what to do in this scenario? :)
It is asking: For which GitHub repository would you like to set up a GitHub workflow? (format: user/repository)
I haven't tried to do anything yet since I dont want to do anything wrong.
This question from the CLI doesn't relate to Firestore, but to Firebase Hosting.
In addition, you should only be getting it you indicate that you want to deploy to Firebase Hosting when you commit a code change to GitHub.
Since you don't seem to do that, why are you trying to connect your Firebase project to it? I'd try again, and only select the products that you want to use.

Quick and easy version control for WordPress Themes?

I work alongside two other developers and we seriously need a method of version control implementing within our workflow. Currently we're centralising data using a Synology NAS (which is backing itself up to Google Drive) but the bulk of our development work is done on our local machines just to speed things up.
We've been running into issues lately where we have lost track of file versions when moving between local, centralised and live copies due to our set up. We have suggested, between ourselves, using Git but none of us are experienced with it and after spending today doing some research I feel as though it is not going to actually help. It feels quite clunky and as though it slows the process down. Maybe I'm just doing something wrong?
Anyway, if anybody could suggest a better way/optimal git config they have used or had experience with I would be greatly appreciative.
Thanks in advance,
Ethan.
If you don't want to use git, then I suggest to use SVN. You can find a free SVN repository here: https://riouxsvn.com/
Hope it works!
Preparation to use git to version control your WordPress theme:
1. Remote repo. This is the place where the versions to be managed and controlled. You can create a remote repo by git init --bared. Or you can use github, bitbuckte etc to host your remote repo.
2. Local repo. make changes the develop on it. You can use below commands to work with your remote repo:
git clone /path/to/remote/repo
git add filename #after you add/modify a file
git commit -m 'message' #commit your changes in local repo
git push #push your local changes to remote repo
More details about git, you can refer git book .

How do I completely remove Exceptionless from a server?

I recently installed Exceptionless on a server for testing purposes. Now how do I go about completely removing it from said server? I have uninstalled and deleted all the directories for both ElasticSearch and Exceptionless. When I reinstall it again, it says my email already exists. I basically need to completely remove the tool from my system, so that I can try different configurations. Any help would be greatly appreciated.
I work on the Exceptionless Project. You just need to remove the website and Elasticsearch instance that you configured (if you only set it up for Exceptionless). If you delete the Elasticsearch folder you should be completely free. If you are using redis, you may want to flush the redis db to start over. Were you able to get it working?

Need help in sonatype nexus advance search

I have a requirement to implement the advance search in sonatype nexus. Can I create the custom keyword to search an artifacts in Nexus? As an example I am looking for all the artifacts uploaded by user "X". In the same way I may have different key to search the artifacts.
Can someone please give me a pointer?
Thanks,
Sanjiv
This is currently not possible with Nexus Repository Manager 3. The user who uploaded an artifact is saved but not to metadata currently. You may file an issue at https://issues.sonatype.org/projects/NEXUS to express interest in this functionality, however.

Writing an appspec.yml File for Deployment from S3 (and/or Bit Bucket) to AWS CodeDeploy

I'd like to make it so that a commit to our BitBucket repo (or S3 Bucket) automatically deploys code (using CodeDeploy) to our EC2 instances. I'm not clear what to use for the 'source' and 'destination' entry under the 'files' section in the appspec.yml file and also I am not cleared what to mention in BeforeInstall and AfterInstall under 'Hooks' section. I've found some examples on Google and AWs documentation but I am confused what to mention in above fields. The more I am exploring more I am getting confused.
Consider I am new to AWS Code Deploy.
Also it will be very helpful if someone can provide me step y step link how to configure and how to automate the CodeDeploy.
I was wondering if someone could help me out?
Thanks in advance for your help!
Thanks for using CodeDeploy. For new users, I'd like to recommend the following things to do:
Try to run First Run Wizard on console, it will should you the general process how the deployment goes. It also provide a default deployment bundle, also an appspec file included.
Once you want to try a deployment yourself, the Get Started doc is a great place to help you with some pre-requiste settings like IAM role
Then probably try some tutorials for a sample app too, which gives you some idea about deployment groups, deployment configuration, revision and so on.
The next step should be create a bundle for your own use cases, Appspec file doc would be a great place to refer. And for your concerns about BeforeInstall and AfterInstall, if your application doesn't need to do anything, the lifecycle events can be left as empty. BeforeInstall can be used to for for preinstall tasks, such as decrypting files and creating a backup of the current version, while AfterInstall can be used for tasks such as configuring your application or changing file permissions.
Now it comes to the fun part! This blog talks about details about how to integrate with Github(similar for Bitbucket). It's a little long, but really useful, and it also includes how to do automatically deployment once there is a new pushed commit. Currently Jenkins and CodePipline are really popular for auto-triggered deplyoments, but there are always a lot of other ways can achieve the same purpose like Lamda and so on

Resources